摘要: #函数长度 ####一、只给形参(无默认值): function f0() { } console.log(f0.length)//0 function f1(a) { } console.log(f1.length)//1 function f2(a, b) { } console.log(f2. 阅读全文
posted @ 2022-07-17 18:56 Kangf 阅读(181) 评论(0) 推荐(0) 编辑