Created
November 9, 2017 08:33
-
-
Save ishankhare07/eddfb2677821991df011ddcfc2550c79 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
a = {} | |
a['name'] = 'ishan' | |
console.log(a) | |
// { name: 'ishan' } | |
// or the other way | |
a.age = 24 | |
console.log(a) | |
// { name: 'ishan', age: 24 } | |
console.log(a.name) | |
// ishan | |
delete a.age | |
console.log(a) | |
// { name: 'ishan' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment