Skip to content

Instantly share code, notes, and snippets.

@ishankhare07
Created November 9, 2017 08:33
Show Gist options
  • Save ishankhare07/eddfb2677821991df011ddcfc2550c79 to your computer and use it in GitHub Desktop.
Save ishankhare07/eddfb2677821991df011ddcfc2550c79 to your computer and use it in GitHub Desktop.
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