Skip to content

Latest commit

 

History

History
executable file
·
11 lines (8 loc) · 184 Bytes

File metadata and controls

executable file
·
11 lines (8 loc) · 184 Bytes

.shift()

Removes the first element from an array and returns it.

let arr = [1, 2, 3, 4, 5];

var result = arr.shift();     
// result: 1
// arr: [2, 3, 4, 5]