C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Array push() methodThe JavaScript array push() method adds one or more elements to the end of the given array. This method changes the length of the original array. SyntaxThe push() method is represented by the following syntax: array.push(element1,element2....elementn) Parameterelement1,element2....elementn - The elements to be added. ReturnThe original array with added elements. JavaScript Array push() method exampleLet's see some examples of push() method Example 1Here, we will add an element in the given array. <script> var arr=["AngularJS","Node.js"]; arr.push("JQuery"); document.writeln(arr); </script> Output: AngularJS,Node.js,JQuery Example 2Let's see an example to add more than one elements in the given array. <script> var arr=["AngularJS","Node.js"]; document.writeln("Length before invoking push(): "+arr.length+"<br>"); arr.push("JQuery","Bootstrap"); document.writeln("Length after invoking push(): "+arr.length+"<br>"); document.writeln("Update array: "+arr); </script> Output: Length before invoking push(): 2 Length after invoking push(): 4 Update array: AngularJS,Node.js,JQuery,Bootstrap
Next TopicJavaScript Array
|