2020年12月24日
摘要: 2020/12/24 es5: const str1='aaa'; const str2 = 'bbb'; let str = str1+str2+'ccc';//es5中使用'+'进行字符串拼接,并且不能换行,否则会报错 console.log(str); //aaabbbccc es6: con 阅读全文
posted @ 2020-12-24 10:06 巍MG 阅读(183) 评论(0) 推荐(0) 编辑