Skip to content

Instantly share code, notes, and snippets.

@captDaylight
Last active October 5, 2015 03:43
Show Gist options
  • Select an option

  • Save captDaylight/494bf57a2234ed13ade5 to your computer and use it in GitHub Desktop.

Select an option

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