ES6-数组的扩展-数组的空位

数组的空位指,数组的某一个位置没有任何值。比如,Array构造函数返回的数组都是空位。

 

Array(3) // [, , ,]

上面代码中,Array(3) 返回一个具有3个空位的数组。

 

注意,空位不是 undefined,一个位置的值等于 undefined,依然是有值的。空位是没有任何值,in 运算符可以说明这点。

 

0 in [undefined, undefined, undefined] // true
0 in [, , ,] // false

上面代码说明,第一个数组的 0 号位置是有值的,第二个数组的 0 号位置没有值。ES5 对空位的处理,已经很不一致了,大多数情况下会忽略空位。

 

 

  • forEach(),filter(),every() 和 some() 都会跳过空位。
  • map() 会跳过空位,但会保留这个值。
  • join() 和 toString() 会将空位视为 undefined,而 undefined 和 null 会被处理成空字符串。
// forEach方法
[,'a'].forEach((x,i) => console.log(i)); // 1

// filter方法
['a',,'b'].filter(x => true) // ['a','b']

// every方法
[,'a'].every(x => x==='a') // true

// some方法
[,'a'].some(x => x !== 'a') // false

// map方法
[,'a'].map(x => 1) // [,1]

// join方法
[,'a',undefined,null].join('#') // "#a##"

// toString方法
[,'a',undefined,null].toString() // ",a,,"

ES6 则是明确将空位转为 undefined。

 

Array.from 方法会将数组的空位,转为 undefined,也就是说,这个方法不会忽略空位。

 

Array.from(['a',,'b'])
// [ "a", undefined, "b" ]

扩展运算符(...)也会将空位转为 undefined。

 

 

[...['a',,'b']]
// [ "a", undefined, "b" ]

copyWithin() 会连空位一起拷贝。

 

 

[,'a','b',,].copyWithin(2,0) // [,"a",,"a"]

fill() 会将空位视为正常的数组位置。

 

 

new Array(3).fill('a') // ["a","a","a"]

for...of 循环也会遍历空位。

 

 

let arr = [, ,];
for (let i of arr) {
  console.log(1);
}
// 1
// 1

上面代码中,数组 arr 有两个空位,for...of 并没有忽略它们。如果改成 map 方法遍历,空位是会跳过的。

 

entries(),keys(),values(),find() 和 findIndex() 会将空位处理成 undefined。

 

// entries()
[...[,'a'].entries()] // [[0,undefined], [1,"a"]]

// keys()
[...[,'a'].keys()] // [0,1]

// values()
[...[,'a'].values()] // [undefined,"a"]

// find()
[,'a'].find(x => true) // undefined

// findIndex()
[,'a'].findIndex(x => true) // 0

空位的处理规则非常不统一,所以尽量避免出现空位。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值