TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

JavaScript Array unshift() Method

JavaScript Array unshift() Method with example, javascript array methods, concat() method, every() method, filter() method, forEach() method, join() method, indexOf() method, lastIndexOf() method, map() method, push() method, slice() method, sort() method, unshift() method, toSource() method etc.

<< Back to JAVASCRIPT

JavaScript Array unshift() method

The JavaScript array unshift() method adds one or more elements in the beginning of the given array and returns the updated array. This method changes the length of the original array.

Syntax

The unshift() method is represented by the following syntax:

array. unshift(element1,element2,....,elementn)

Parameter

element1,element2,....,elementn - The elements to be added.

Return

The original array with added elements.

JavaScript Array unshift() method example

Let's see some examples of unshift() method.

Example 1

Here, we will add an element in the given array.

<script>
var arr=["AngularJS","Node.js"];
var result=arr.unshift("JQuery");
document.writeln(arr); 
</script>
Test it Now

Output:

JQuery,AngularJS,Node.js

Example 2

Let'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 unshift(): "+arr.length+"<br>");
arr.unshift("JQuery","Bootstrap");
document.writeln("Length after invoking unshift(): "+arr.length+"<br>"); 
document.writeln("Updated array: "+arr);
</script>
Test it Now

Output:

Length before invoking unshift(): 2
Length after invoking unshift(): 4
Updated array: JQuery,Bootstrap,AngularJS,Node.js

Next TopicJavaScript Array




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf