var str = "abcabc";

// 将str中的a全部替换成x var str = str.replace(/\a/g, “x”);

console.log(str);