Last active
August 18, 2017 20:38
-
-
Save radzionc/5b9bb23a73e5854d909b27838c7152d8 to your computer and use it in GitHub Desktop.
JS developer in few minutes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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