JavaScript Array unshift() Method Last Updated : 15 Jul, 2024 Comments Improve Suggest changes Like Article Like Report JavaScript Array unshift() Method is used to add one or more elements to the beginning of the given array. This function increases the length of the existing array by the number of elements added to the array.Syntax:array.unshift(element1, element2, ..., elementX);Parameters:element: This parameter element is to be added at the beginning of the array.Return value: This function returns the new length of the array after inserting the arguments at the beginning of the array. Example 1: Below is an example of the Array unshift() method. JavaScript function func() { // Original array let array = ["GFG", "Geeks", "for", "Geeks"]; // Checking for condition in array let value = array.unshift("GeeksforGeeks"); console.log(value); console.log(array); } func(); Output5 [ 'GeeksforGeeks', 'GFG', 'Geeks', 'for', 'Geeks' ] Example 2: In this example, the function unshift() adds 28 and 65 to the front of the array. JavaScript function func() { let arr = [23, 76, 19, 94]; // Adding elements to the front of the array console.log(arr.unshift(28, 65)); console.log(arr); } func(); Output6 [ 28, 65, 23, 76, 19, 94 ] Example 3: In this example, the unshift() method tries to add the element of the array, but the array is empty therefore it adds the value in the empty array. JavaScript function func() { let arr = []; console.log(arr.unshift(1)); } func(); Output1 We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.Supported Browsers:Google Chrome 1Edge 12 Firefox 1Opera 4Safari 1 Comment More infoAdvertise with us H HGaur Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-array JavaScript-Methods +1 More Explore JavaScript BasicsIntroduction to JavaScript4 min readJavaScript Versions2 min readHow to Add JavaScript in HTML Document?3 min readJavaScript Syntax6 min readJavaScript Output4 min readJavaScript Comments2 min readVariables & DatatypesVariables and Datatypes in JavaScript6 min readGlobal and Local variables in JavaScript4 min readJavaScript Let6 min readJavaScript const5 min readJavaScript Var Statement7 min readOperatorsJavaScript Operators5 min readOperator precedence in JavaScript2 min readJavaScript Arithmetic Operators5 min readJavaScript Assignment Operators5 min readJavaScript Comparison Operators5 min readJavaScript Logical Operators5 min readJavaScript Bitwise Operators5 min readJavaScript Ternary Operator4 min readJavaScript Comma Operator2 min readJavaScript Unary Operators4 min readJavaScript in and instanceof operators3 min readJavaScript String Operators3 min readStatementsJavaScript Statements4 min readJavaScript if-else3 min readJavaScript switch Statement4 min readJavaScript Break Statement2 min readJavaScript Continue Statement1 min readJavaScript Return Statement4 min readLoopsJavaScript Loops3 min readJavaScript For Loop4 min readJavaScript While Loop3 min readJavaScript For In Loop3 min readJavaScript for...of Loop3 min readJavaScript do...while Loop4 min readPerformance & DebuggingJavaScript | Performance4 min readDebugging in JavaScript4 min readJavaScript Errors Throw and Try to Catch2 min readObjectsObjects in Javascript4 min readObject Oriented Programming in JavaScript3 min readJavaScript Objects6 min readCreating objects in JavaScript5 min readJavaScript JSON Objects3 min readJavaScript Object Reference4 min readFunctionsFunctions in JavaScript5 min readHow to write a function in JavaScript ?4 min readJavaScript Function Call2 min readDifferent ways of writing functions in JavaScript3 min readDifference between Methods and Functions in JavaScript3 min readExplain the Different Function States in JavaScript3 min readJavaScript Function Complete Reference3 min readArraysJavaScript Arrays7 min readJavaScript Array Methods7 min readBest-Known JavaScript Array Methods6 min readImportant Array Methods of JavaScript7 min readJavaScript Array Reference4 min readStringJavaScript Strings6 min readJavaScript String Methods9 min readJavaScript String Reference4 min read Like