Appearance
禁止无用的字符串拼接
拼接两个字符串,就像脱了裤子放屁,多此一举。
将可以合并的字符串直接写成一个字符串。
var a = 'ranwawa' + '520';
var a = 'ranwawa520';