Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Created January 22, 2019 06:38
Show Gist options
  • Save jaamaalxyz/aa9f44df5f60dcf0936cf3b5ae59ad05 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/aa9f44df5f60dcf0936cf3b5ae59ad05 to your computer and use it in GitHub Desktop.
const person = {
name: 'Jamal Uddin',
actions: ['bike', 'hike', 'ski', 'surf'],
printActions() {
return this.actions.map(action => `${this.name} likes to ${action}`)
}
}
console.log(person.printActions())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment