返回博主主页

箭头函数的length属性

 

var a = (x,y,z)=>{
    
}
console.log(a.length) // 3

 

//legnth:返回函数形参的个数,不包括rest参数的和赋值的形参
    let f = (a,b,c,d,g,f=10,...e) => console.log(f.length);//5
    f()

 

posted @ 2022-02-12 20:40  懒惰的星期六  阅读(46)  评论(0编辑  收藏  举报

Welcome to here

主页