從現(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ù)制