1、str = "a" + "b" + "c";
2、str = "a";
str += "b";
str += "c";
3、str = ["a", "b", "c"].join("");
4、str = "a";
str = str.concat("b", "c");