Skip to content

Instantly share code, notes, and snippets.

@kevjose
Created January 14, 2017 13:22
Show Gist options
  • Select an option

  • Save kevjose/fbfb61fea4b842dec22468594ea4b14e to your computer and use it in GitHub Desktop.

Select an option

Save kevjose/fbfb61fea4b842dec22468594ea4b14e to your computer and use it in GitHub Desktop.
var user = {
place:'India',
data:[
{name:'John', age:20},
{name:'Jane', age:18}
],
clickHandler: function(){
this.data.forEach(d){
console.log(d.name, this.place);
}
}
}
user.clickHandler();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment