首頁 > web前端 > js教程 > 主體

ES6中剩餘參數的範例講解

不言
發布: 2018-11-14 15:38:30
轉載
1955 人瀏覽過

這篇文章帶給大家的內容是關於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中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板