摘要: 一、String 实例方法(或非静态方法) const str = "Hello World"; toLowerCase();将英文大写字母转换成小些字母。比如: const newStr = str.toLowerCase(); ==> "hello world"; 二、String 的静态方法 阅读全文