Click the button to add elements to the array.
测试结果:
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