js字符串大小写转换

279 阅读1分钟

语法

toLowerCase() 和 toUpperCase() 方法可以改变大小写;

全部转换成大写

console.log('Interface'.toUpperCase()); // INTERFACE

全部转换成小写

console.log('Interface'.toLowerCase()); // interface