Skip to content

Instantly share code, notes, and snippets.

@hrdtbs
Created January 11, 2018 04:30
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 hrdtbs/5cfe2ef8bdbaad0ee02995027b27d0c9 to your computer and use it in GitHub Desktop.
Save hrdtbs/5cfe2ef8bdbaad0ee02995027b27d0c9 to your computer and use it in GitHub Desktop.
const a = [2,3,4]
a.push(9)
console.log(a) // [2,3,4,9]
const b = {"key": "value"}
b.key = "newValue"
console.log(b) // {"key": "newValue"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment