欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

向JavaScript的数组中添加元素的方法小结_基础知识

程序员文章站 2022-04-19 12:56:16
...
在数组的开头添加新元素 - unshift()
源代码:

Click the button to add elements to the array.

Note: The unshift() method does not work properly in Internet Explorer 8 and earlier, the values will be inserted, but the return value will be undefined.

测试结果:

Lemon,Pineapple,Banana,Orange,Apple,Mango


在数组的第2位置添加一个元素 - splice()
源代码:


Click the button to add elements to the array.

​ ​

测试结果:

Banana,Orange,Lemon,Kiwi,Apple,Mango


数组的末尾添加新的元素 - push()
源代码:


Click the button to add a new element to the array.

​ ​

测试结果:

Banana,Orange,Apple,Mango,Kiwi
相关标签: JavaScript 数组