這篇文章帶給大家的內容是關於ES6中剩餘參數的程式碼講解,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
剩餘參數將沒有對應形參的參數聚合成一個數組
function(a, b, ...theArgs) { }
剩餘參數只會將沒有對應形參的參數聚合成一個陣列, 而arguments
則是包含了所有的參數。
function add(a, b, ...theArgs) { return {rest: theArgs, arguments} } add() // {rest: [undefined, undefined, []], arguments: Arguments(0)} add(1) // {rest: [1, undefined, []], arguments: Arguments(1)} add(1, 2) // {rest: [1, 2, []], arguments: Arguments(2)} add(1, 2, 3, 4, 5) // {rest: [1, 2, [3, 4, 5]], arguments: Arguments(5)}
剩餘參數總是一個數組,而不像arguments
是一個偽數組
function add(...theArgs) { console.log(Array.isArray(theArgs)) theArgs.forEach((a)=>console.log(a)) console.log(Array.isArray(arguments)) Array.prototype.slice.call(arguments, add.length).forEach((a)=>console.log(a)) // 转化成数组 } add(1,2,3) // true 1 2 3 false 1, 2, 3, 4
function add(...[a, b, c]){ return a + b +c } add(1, 2, 3) // 6 add(1, 2, 3) // 6
babel
翻譯function add(...num){ return num.reduce((n1,n2)=>n1+n2) }
翻譯後
function add() { for (var _len = arguments.length, num = Array(_len), _key = 0; _key < _len; _key++) { num[_key] = arguments[_key]; } return num.reduce(function (n1, n2) { return n1 + n2; }); }
以上是ES6中剩餘參數的範例講解的詳細內容。更多資訊請關注PHP中文網其他相關文章!