Hi FE !
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
  • Arr001-数组的length属性

Arr001-数组的length属性

const clothes = ['jacket','tshirt];
clothes.length = 0

clothes[0]  输出什么?

答案是:undefined

解析: 减少length属性值的副作用就是删除自己的数组元素,这些元素的索引位于新旧长度之间。

##由于length属性行为,当js执行clothes.length = 0时,删除所有的clothes项,所以clothes[0]的值为undefined,因为clothes数组已被清空

Edit this page
最近更新: 2025/6/27 02:24
Contributors: qdleader
qdleader
本站总访问量 129823次 | 本站访客数 12人