Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Created May 16, 2016 10:29
Show Gist options
  • Save mariyadiminsky/ce75c8e09e41b08a725c38e4e254ab74 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/ce75c8e09e41b08a725c38e4e254ab74 to your computer and use it in GitHub Desktop.
// Test it here: https://jsfiddle.net/maasha/che8m4c1/
var bunny = {
name: 'Usagi',
tasks: ['transform', 'eat cake', 'blow kisses'],
showTasks() {
this.tasks.forEach((task) => {
alert(this.name + " wants to " + task);
});
}
};
bunny.showTasks();
// Usagi wants to transform
// Usagi wants to eat cake
// Usagi wants to blow kisses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment