methods 不能使用箭头函数
为啥?
在箭头函数中使用this的话指向的是组件本身
如果不使用箭头函数 this显示什么?
Objec.assign 浅拷贝
目标对象合并
数组合并
a.concat(b)
[a,...b]//数组
字符串遍历
const arr = '你好世界'
for(var x of arr){
console.log(x)
}
模板字符串
``这个不多说了吧 都懂,经常用到
返回对应码点字符
String.fromCodePoint(0x20BB7)