Add new elements to an array:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.unshift("Lemon","Pineapple");
Try it Yourself »
The unshift()
method adds new elements to the beginning of an array.
The unshift()
method overwrites the original array.
array.unshift(
item1,
item2, ...,
itemX)
Type | Description |
item1 item2 .. itemX |
The item(s) to add to the array. Minimum one item is required. |
Type | Description |
A number | The new length of the array. |
unshift()
is an ECMAScript1 (ES1) feature.
ES1 (JavaScript 1997) is fully supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!