各种情况的解构+默认值情况
- 数组的解构赋值
let [a,b,c]=[3,4,5]
//a=3 b=4 c=5
(嵌套模式也适用,只要可以对应)
let [foo, [[bar], baz]] = [1, [[2], 3]];
foo // 1
bar // 2
baz // 3
let [ , , third] = ["foo", "bar", "baz"];
third // "baz"
let [x, , y] = [1, 2, 3];
x // 1
y // 3
let [head, ...tail] = [1, 2, 3, 4];
head // 1
tail // [2, 3, 4]
let [x, y, ...z] = ['a'];
x // "a"
y // undefined
z // []
- 对象的解构赋值
let {n:wo,t:ta}={n:woshini,t:haihai};
变量与属性同名,才可以取到正确的值
- 字符串的解构赋值
const [a, b, c, d, e] = 'hello';
a // "h"
b // "e"
c // "l"
d // "l"
e // "o
//数组对应字符串中内容
let {length : len} = 'hello';
len // 5
//对length 属性进行解构
- 数值和布尔值的解构赋值
let {toString: s} = 123;
s === Number.prototype.toString // true
let {toString: s} = true;
s === Boolean.prototype.toString // true
//s为toString函数
**代码理解:**将数值和布尔值转换为对象,然后将对象的方法解析给toString
详细解析参考网址:
https://segmentfault.com/q/1010000005647566
- 函数参数的解构赋值
function add([x, y]){
return x + y;
}
add([1, 2]); // 3
- 用途整理:
- 传参 取值 遍历