Skip to content

Instantly share code, notes, and snippets.

@pSapien
Last active October 31, 2019 12:06
Show Gist options
  • Save pSapien/6ac70d53899f6fe88565947e7e690031 to your computer and use it in GitHub Desktop.
Save pSapien/6ac70d53899f6fe88565947e7e690031 to your computer and use it in GitHub Desktop.
remove first element of an array.
/**
* @params{array}
* remove first element of an array.
* removeFirst([4,46,312,12313,123123]) => [46, 312, 12313, 123123]
*/
function removeFirst(arr) {
return arr.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment