ES6 - toLowerCase() 方法
此方法返回转换为小写的调用字符串值。
语法
string.toLowerCase( )
返回值
返回转换为小写的调用字符串值。
示例
var str = "Apples are round, and Apples are Juicy."; console.log(str.toLowerCase( ))
输出
apples are round, and apples are juicy.
此方法返回转换为小写的调用字符串值。
string.toLowerCase( )
返回转换为小写的调用字符串值。
var str = "Apples are round, and Apples are Juicy."; console.log(str.toLowerCase( ))
apples are round, and apples are juicy.
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。