Skip to content

Instantly share code, notes, and snippets.

@sukhmeet2390
Created August 2, 2016 17:31
Show Gist options
  • Save sukhmeet2390/572a3ea38d46c5607a32b4ed74fca0bc to your computer and use it in GitHub Desktop.
Save sukhmeet2390/572a3ea38d46c5607a32b4ed74fca0bc to your computer and use it in GitHub Desktop.
var player = {
name : 'Dhoni',
tasks : ['batsman', 'wicket-keeper','fielder'],
printTasks: function(){
this.tasks.forEach((task)=>{
console.log(this.name +' is a ' + task);
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment