js 如何字符串追加?
var a = '123';
var a += '456';
console.log(a);
为什么这样写会报错呢?
SyntaxError: missing ; before statement
应该怎么来写?
没穿内裤冲刺
9 years, 1 month ago