日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:52010
  • 待審:67
  • 小程序:12
  • 文章:1106242
  • 會員:784

從現(xiàn)有數(shù)組形成一個新數(shù)組,字符噪音更少。
spread 將元素提取為值。它是一個不可變的函數(shù)。
[] 是寫入新數(shù)組的方式。因此,展開不會改變原始數(shù)組。
spread 適用于所有可迭代對象,而不僅僅是數(shù)組。
iterables:字符串、數(shù)組、映射、集合,即除了對象數(shù)據(jù)類型之外的大多數(shù)內(nèi)置數(shù)據(jù)結(jié)構(gòu)。
與解構(gòu)的區(qū)別:從數(shù)組中提取所有元素,并且不創(chuàng)建新變量,僅在需要值 csv 的地方使用。
當我們構(gòu)建數(shù)組或?qū)⒅祩鬟f給函數(shù)時使用。

const nums = [5,6,7];
const newnums = [1,2, nums[0],nums[1],nums[2]];
console.log(newnums); // [ 1, 2, 5, 6, 7 ]

is reduced to 

const nums = [5,6,7];
const newnums = [1,2, ...nums];
console.log(newnums); // [ 1, 2, 5, 6, 7 ]
console.log(...newnums); // 1 2 5 6 7

登錄后復(fù)制

1. 將兩個數(shù)組合并在一起

const arr1 = [1,2,3,4,5];
const arr2 = [6,7,8,9];

let nums = [...arr1,...arr2];
nums; // [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]


const firstname = "peter";
const fullname = [...firstname,' ',"p."];
fullname; // [ 'p', 'e', 't', 'e', 'r', ' ', 'p.' ]

console.log(...firstname); // 'p' 'e' 't' 'e' 'r'

登錄后復(fù)制

錯誤來源:擴展運算符在模板字符串中不起作用,因為模板字符串不希望其中有多個值。

2. 創(chuàng)建數(shù)組的淺拷貝

const girl = {
  name: 'melania',
  friends: ['alina', 'alice', 'ayesha', 'anamika', 'anaya']
};

const frnz = [...girl.friends];
console.log(frnz); // [ 'alina', 'alice', 'ayesha', 'anamika', 'anaya' ]
console.log(girl.friends); // [ 'alina', 'alice', 'ayesha', 'anamika', 'anaya' ]

登錄后復(fù)制

spread 也適用于對象,即使它們不是可迭代的。

let male = {
  "firstname": "gangadhar",
  "lastname": "shaktimaan"
}

let female = {
  "firstname": "geeta",
  "lastname": "vishwas"
}

let x = {...male, born: 1950};
let y = {...female, born: 1940};

x; // { firstname: 'gangadhar',   lastname: 'shaktimaan',   born: 1950 }
y; // { firstname: 'geeta',  lastname: 'vishwas',  born: 1940 }```




## shallow copy of objects:

let male = {
  "firstname": "gangadhar",
  "lastname": "shaktimaan"
}

let character = {...male, firstname: 'wonderwoman'};

male;         // { firstname: 'gangadhar', lastname: 'shaktimaan' }
character;    // { firstname: 'wonderwoman', lastname: 'shaktimaan' }

- first name for character object is changed although it was extracted from male object


登錄后復(fù)制

休息模式和休息參數(shù):

rest 的作用與 spread 相反,但具有與 spread 相同的語法。
spread 用于構(gòu)建新數(shù)組或?qū)⒅祩鬟f給 fn。在這兩種情況下,擴展都用于擴展元素。
rest 使用相同的語法,但將這些值壓縮為一個
spread 用于從數(shù)組中解包元素,rest 用于將元素打包到數(shù)組中。
““

展開運算符和剩余運算符的語法差異:
擴展運算符 => … 用于賦值運算符的 rhs。
const nums = [9,4, …[2,7,1]];

剩余運算符=> …將位于帶有解構(gòu)的賦值運算符的lhs上
const [x,y,…z] = [9,4, 2,7,1];

## rest syntax collects all the elements after the last elements into an array. doesn't include any skipped elements. 
- hence, it should be the last element in the destructuring assignment.
- there can be only one rest in any destructuring assignment.

登錄后復(fù)制

let diet = [‘披薩’, ‘漢堡’,’面條’,’烤’,’壽司’,’dosa’,’uttapam’];

讓[第一,第三,…其他] =飲食;
首先;
第三;
其他;

- rest also works with objects. only difference is that elements will be collected into a new object instead of an arrray.

登錄后復(fù)制

let days = { ‘mon’:1,’tue’:2,’wed’:3,’thu’:4,’fri’:5,’sat’:6,’sun’:7};
讓{周六,周日,…工作} = 天;
放開= {周六,周日};

工作; // { 周一:1,周二:2,周三:3,周四:4,周五:5 }
離開; // { 周六: 6, 周日: 7 }

- although both look same, but they work differently based on where they are used.

登錄后復(fù)制

休息和傳播的微妙區(qū)別:

擴展運算符用于我們寫入用逗號分隔的值
使用休息模式,我們將編寫用逗號分隔的變量名稱。


登錄后復(fù)制

分享到:
標簽:休息 傳播 運算符
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 52010

    網(wǎng)站

  • 12

    小程序

  • 1106242

    文章

  • 784

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定