Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Created December 1, 2019 21:01
Show Gist options
  • Save Paul-Browne/f1c5e84907a7b419bbe638de73b5d99d to your computer and use it in GitHub Desktop.
Save Paul-Browne/f1c5e84907a7b419bbe638de73b5d99d to your computer and use it in GitHub Desktop.
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var removedElement = array.shift();
console.log(array);
// [2, 3, 4, 5, 6, 7, 8, 9, 10]
console.log(removedElement);
// 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment