JavaScript Array shift() Method Last Updated : 18 Sep, 2024 Comments Improve Suggest changes Like Article Like Report The shift() method in JavaScript is used to remove the first element of an array, reducing the array's length by one. This method is particularly useful for scenarios where elements need to be processed in the order they were added, such as in queue-like structures.Syntax:arr.shift();Parameters: This method does not accept any parameter.Return Value: This function returns the removed first element of the array. If the array is empty then this function returns undefined.Note: This function can also be used with other javascript objects that behave like the array.Key PointsThe shift() method modifies the original array.It can be used with other JavaScript objects that behave like arrays (e.g., array-like objects).Indices of the remaining elements are adjusted, decrementing by one to fill the gap left by the removed element.Examples of Array shift() MethodExample 1: Removing the First Element from the ArrayThe function func() removes the first element from array using the shift() method. The removed element is stored in the variable, value, which is then logged to the console along with the modified array. JavaScript // Original array let array = ["GFG", "Geeks", "for", "Geeks"]; // Checking for condition in array let value = array.shift(); console.log(value); console.log(array); OutputGFG [ 'Geeks', 'for', 'Geeks' ] Example 2: Removing First Element from Empty Array The function func() attempts to remove the first element from an empty array array using the shift() method. Since the array is empty, shift() returns undefined, which is logged to the console along with the unchanged array. JavaScript // Original array let array = []; // Checking for condition in array let value = array.shift(); console.log(value); console.log(array); Outputundefined [] Example 3: Removing the First Element from the Nested ArrayThe function func() removes the first element from the nested array using the shift() method. The removed element is stored in the variable value, which is then logged to the console along with the modified array. JavaScript // Original array let array = [1,[2,3,4],5,6]; // shift method on nested array let value = array[1].shift(); console.log(value); console.log("Array after operation: "+ array); Output2 Array after operation: 1,3,4,5,6 Supported Browsers:Google Chrome 1 Edge 12 Firefox 1 Opera 4 Safari 1 Comment More infoAdvertise with us H HGaur Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-array JavaScript-Methods +1 More Practice Tags : Misc Explore JavaScript Tutorial 8 min read JavaScript BasicsIntroduction to JavaScript 4 min read JavaScript Versions 2 min read How to Add JavaScript in HTML Document? 3 min read JavaScript Syntax 6 min read JavaScript Output 4 min read JavaScript Comments 2 min read JS Variables & DatatypesVariables and Datatypes in JavaScript 6 min read Global and Local variables in JavaScript 4 min read JavaScript Let 6 min read JavaScript const 5 min read JavaScript Var Statement 7 min read JS OperatorsJavaScript Operators 5 min read Operator precedence in JavaScript 2 min read JavaScript Arithmetic Operators 5 min read JavaScript Assignment Operators 5 min read JavaScript Comparison Operators 5 min read JavaScript Logical Operators 5 min read JavaScript Bitwise Operators 5 min read JavaScript Ternary Operator 4 min read JavaScript Comma Operator 2 min read JavaScript Unary Operators 4 min read JavaScript in and instanceof operators 3 min read JavaScript String Operators 3 min read JS StatementsJavaScript Statements 4 min read JavaScript if-else 3 min read JavaScript switch Statement 4 min read JavaScript Break Statement 2 min read JavaScript Continue Statement 1 min read JavaScript Return Statement 4 min read JS LoopsJavaScript Loops 3 min read JavaScript For Loop 4 min read JavaScript While Loop 3 min read JavaScript For In Loop 3 min read JavaScript for...of Loop 3 min read JavaScript do...while Loop 4 min read JS Perfomance & DebuggingJavaScript | Performance 4 min read Debugging in JavaScript 4 min read JavaScript Errors Throw and Try to Catch 2 min read JS ObjectObjects in Javascript 4 min read Object Oriented Programming in JavaScript 3 min read JavaScript Objects 6 min read Creating objects in JavaScript 5 min read JavaScript JSON Objects 3 min read JavaScript Object Reference 4 min read JS FunctionFunctions in JavaScript 4 min read How to write a function in JavaScript ? 4 min read JavaScript Function Call 2 min read Different ways of writing functions in JavaScript 3 min read Difference between Methods and Functions in JavaScript 3 min read Explain the Different Function States in JavaScript 3 min read JavaScript Function Complete Reference 3 min read JS ArrayJavaScript Arrays 7 min read JavaScript Array Methods 7 min read Best-Known JavaScript Array Methods 6 min read Important Array Methods of JavaScript 7 min read JavaScript Array Reference 4 min read Like