ES6 example1 字符串String 方法 replace() ES6 字符串String 方法 localeCompare() ES6 examples2 字符串String 方法 replace() ES6 example1 字符串String 方法 replace() var re = /apples/gi; var str = "Apples are round, and apples are juicy."; var newstr = str.replace(re, "oranges"); console.log(newstr) ES6 字符串String 方法 localeCompare() ES6 examples2 字符串String 方法 replace()