美文网首页
切割函数实参的方法

切割函数实参的方法

作者: yujiawei007 | 来源:发表于2017-09-10 20:49 被阅读0次

    因为函数实参arguments是伪数组,所以:

     let settledArgs = [].splice.call(arguments, 1);
     let mutableArguments = arguments;
    

    其中,mutableArguments是第一个参数组成的单个元素数组,settledArgs 是后面参数的数组集合.

    相关文章

      网友评论

          本文标题:切割函数实参的方法

          本文链接:https://www.haomeiwen.com/subject/ywmtsxtx.html