Skip to content

Instantly share code, notes, and snippets.

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