- toLowerCase 方法
- 语法:
- 返回值:
- 示例:
- 结果:
toLowerCase 方法
把字符串转换为小写。
语法:
stringObject.toLowerCase();
返回值:
一个新的字符串,在其中 stringObject 的所有大写字符全部被转换为了小写字符。
示例:
var Str = "Hello KILLHAPPY";
console.log( Str.toLowerCase() );
结果:
>>>
hello killhappy
本文使用 EduBoo.COM 构建