|
|
Unshift method to add element to an arrayWe have seen how to add element at the end of an array by using push() method. Same way we can add elements at the beginning of an array by using unshift() method. Here is the general syntax for using unshift() method.
scripts.unshift("VBScript","Perl");
Here scripts is our array object and we are adding two new elements VBScript and Perl at the beginning of this array by using unshift() method.
Here is the complete code for unshift()
var scripts = new Array();
scripts[0] = "PHP";
scripts[1] = "ASP";
scripts[2] = "JavaScript";
scripts[3] = "HTML";
document.write(scripts.join(" <br> "));
document.write("<br>--Now after applying unshift()--<br>");
scripts.unshift("VBScript","Perl");
document.write(scripts.join(" <br> "));
Adding elements at the end of an array by using push() method
The above code will add VBScript and Perl at the end of the array and display the full list.
We can add elements at any position of an array by using splice method
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
|
| | |
|
|
|
|
|