Skip to content

Instantly share code, notes, and snippets.

@captDaylight
Last active October 5, 2015 03:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save captDaylight/494bf57a2234ed13ade5 to your computer and use it in GitHub Desktop.
Save captDaylight/494bf57a2234ed13ade5 to your computer and use it in GitHub Desktop.
let myArr = [1, 2, 3];
console.log(myArr);
// [1, 2, 3]
myArr.push(4);
console.log(myArr);
// [1, 2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment