Skip to content Skip to sidebar Skip to footer

remove values from array using shift() in javascript

     The shift method removes the element at the 0'th index and shifts the values at consecutive indexes down, then returns the removed value. If the length property is 0, undefined is returned.

Syntax

     Array.shift()
Example

     [1,2,3,4,5,6].shift()

Example Program:- (Editor)


Editor is Loading...

Advertisement

Post a Comment for "remove values from array using shift() in javascript"