Created
May 29, 2018 03:06
-
-
Save khaosdoctor/a16aef8a2e1f5ff841b5be840c8db677 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
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