变量的解构赋值(举例)

各种情况的解构+默认值情况

  • 数组的解构赋值
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
  • 用途整理:
  • 传参 取值 遍历
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值