本节练习
完成下面程序,将name变量中的字母全部转为为大写,输出:'HELLO'。
var name = 'hello';
// write your code here...
答案的代码:
var NAME = 'HELLO';
//write your code here...
console.log('NAME');//'HELLO'
完成下面程序,将name变量中的字母全部转为为大写,输出:'HELLO'。
var name = 'hello';
// write your code here...
var NAME = 'HELLO';
//write your code here...
console.log('NAME');//'HELLO'
本文标题:JS字符串
本文链接:https://www.haomeiwen.com/subject/itdftftx.html
网友评论