370 B
370 B
title, localeTitle
title | localeTitle |
---|---|
Manipulate Arrays With shift() | 使用shift()操纵数组 |
使用shift()操纵数组
虽然pop()
用于删除数组的最后一个元素,但shift()
用于删除第一个元素。这就像你将元素向下移动一个位置。看一下这个:
var arr = [1, 2, 3, 4, 5];
arr.shift(); // Gets rid of the 1