Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Last active April 14, 2020 10:29
Show Gist options
  • Save Paul-Browne/800f4ba32d55c4e752155ac7e838bbd1 to your computer and use it in GitHub Desktop.
Save Paul-Browne/800f4ba32d55c4e752155ac7e838bbd1 to your computer and use it in GitHub Desktop.
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var arrayLength = array.unshift(-2, -1, 0);
console.log(array);
// [-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
console.log(arrayLength);
// 13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment