Skip to content

Instantly share code, notes, and snippets.

@wilk
Created July 16, 2015 13:49
Show Gist options
  • Save wilk/3699c538b69fb5a2f1ae to your computer and use it in GitHub Desktop.
Save wilk/3699c538b69fb5a2f1ae to your computer and use it in GitHub Desktop.
ES6 Object properties
let person = {
introduce() {
console.log('My name is Mario')
},
['say' + 'My' + 'Name']() {
console.log('Mario')
}
}
person.introduce() // My name is Mario
person.sayMyName() // Mario
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment