1. ES6 箭头函数:一对圆括号包含命名参数,后跟一个胖箭头(=>),加函数体。 可以实现和普通函数一样的功能,不同之处在于: (1)无法使用 arguments、super 、new.target 等,同时不能用于构造函数,箭头函数没有 prototype 属性. 在箭头函数中使用 argume Read More
posted @ 2021-10-14 14:41 TwinkleG Views(131) Comments(0) Diggs(0)