试试length的特殊能力

提问

下面的代码输出的结果是什么?

const season = ['spring','summer','autumn','winter'];
season.length = 0;
console.log(season[0]);  // ??

答案: undefined

分析

看到这道题目的时候,心中想的答案是 “spring” ,以为 length 是 writeable: false 的。然而并不是:ECMAScript 2015: length

The length property initially has the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: false }.

当执行season.length = 0;的时候,season 的所有元素都被删除了,因此最后输出undefined。

因此,操作 length可能存在副作用(删除自己的数组元素),请谨慎操作!

你可能感兴趣的:(JS深入理解)