JavaScript代码优化

不用+=,用下面的

arr=[]

arr.push("aaa")

arr.push("bbb")

arr.join(",")




caller()

callee()


你可能感兴趣的:(JavaScript代码优化)