js字符串大小写转换 码蚁工匠 2021-08-13 279 阅读1分钟 语法 toLowerCase() 和 toUpperCase() 方法可以改变大小写; 全部转换成大写 console.log('Interface'.toUpperCase()); // INTERFACE 全部转换成小写 console.log('Interface'.toLowerCase()); // interface