Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created May 29, 2018 03:06
Show Gist options
  • Save khaosdoctor/a16aef8a2e1f5ff841b5be840c8db677 to your computer and use it in GitHub Desktop.
Save khaosdoctor/a16aef8a2e1f5ff841b5be840c8db677 to your computer and use it in GitHub Desktop.
let obj = { nome: 'Lucas' }
obj[Symbol.for('object.upper')] = true
console.log(obj) // { NOME: 'LUCAS' }
console.log(Object.keys(obj)) // ['NOME']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment