Skip to content

Instantly share code, notes, and snippets.

@asci
Created January 21, 2014 11:07
Show Gist options
  • Save asci/8538133 to your computer and use it in GitHub Desktop.
Save asci/8538133 to your computer and use it in GitHub Desktop.
var inst = {
name: 'custom name',
init: function () {
var _this = this;
$('body').on('click', function () {
_this.getName(); // переменная _this берется из замыкания
});
},
getName: function () {
console.log(this.name);
}
}.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment