Skip to content

Instantly share code, notes, and snippets.

@radzionc
Last active August 18, 2017 20:38
Show Gist options
  • Save radzionc/5b9bb23a73e5854d909b27838c7152d8 to your computer and use it in GitHub Desktop.
Save radzionc/5b9bb23a73e5854d909b27838c7152d8 to your computer and use it in GitHub Desktop.
JS developer in few minutes
const dog = {
age: 4,
name: 'Ronni'
}
dog.age = 6 // OK
dog = {} // ERROR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment