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
Example Program:- (Editor)
Editor is Loading...
Advertisement
Syntax
Array.shift()
Example
[1,2,3,4,5,6].shift()
Example Program:- (Editor)
Editor is Loading...
Advertisement
Nhận xét
Đăng nhận xét