Skip to content

一、形参数量的问题

js
    function A(a, b) {}
    function B(a, b = 1) {}
    function C(a, ...args) {}
    console.log(A.length); // 2
    console.log(B.length); // 1
    console.log(C.length); // 1

题解:

  • Functionlength表达的是这个函数它期望的参数数量

Released under the MIT License.