摘要: 箭头函数 和声明式函数一样 let sum = function(a,b){ return a+b } let sum = (a,b)=>{ return a+b } 没有Prototype,不能成为构造函数,不能使用new 不能使用arguments 不能使用super 访问类的prototype 阅读全文
posted @ 2022-10-20 21:02 pocoui 阅读(16) 评论(0) 推荐(0)