對象的解構與數組的解析有一個重要的不一樣。數組的元素是按次序排列的,變量的取值由它的位置決定;而對象的屬性沒有次序,變量必須與屬性同名,才能取到正確的值。javascript
let [ , , third] = ["foo", "bar", "baz"]; third // "baz" let { bar, foo } = { foo: 'aaa', bar: 'bbb' }; foo // "aaa" bar // "bbb"
const [a, b, c, d, e] = 'hello'; a // "h" b // "e" c // "l" d // "l" e // "o"
function add([x, y]){ return x + y; } add([1, 2]); // 3 [[1, 2], [3, 4]].map(([a, b]) => a + b); // [ 3, 7 ]
1.交換變量的值[x, y] = [y, x];
2.從函數返回多個值
函數只能返回一個值,若是要返回多個值,只能將它們放在數組或對象裏返回。有了解構賦值,取出這些值就很是方便。java
// 返回一個數組 function example() { return [1, 2, 3]; } let [a, b, c] = example(); console.log(typeof a) //Number // 返回一個對象 function example() { return { foo: 1, bar: 2 }; } let { foo, bar } = example();
3.函數參數的定義json
// 參數是一組有次序的值 function f([x, y, z]) { ... } f([1, 2, 3]); // 參數是一組無次序的值 function f({x, y, z}) { ... } f({z: 3, y: 2, x: 1});
4.提取 JSON 數據數組
let jsonData = { id: 42, status: "OK", data: [867, 5309] }; let { id, status, data: number } = jsonData; console.log(id, status, number); // 42, "OK", [867, 5309]
上面代碼能夠快速提取 JSON 數據的值。
5.函數參數的默認值
6.遍歷 Map 結構
任何部署了 Iterator 接口的對象,均可以用for...of循環遍歷。Map 結構原生支持 Iterator 接口,配合變量的解構賦值,獲取鍵名和鍵值就很是方便。函數
const map = new Map(); map.set('first', 'hello'); map.set('second', 'world'); for (let [key, value] of map) { console.log(key + " is " + value); } // first is hello // second is world
7.輸入模塊的指定方法
加載模塊時,每每須要指定輸入哪些方法。解構賦值使得輸入語句很是清晰。ui
const { SourceMapConsumer, SourceNode } = require("source-map");