Skip to content

Instantly share code, notes, and snippets.

@YozhEzhi
Created May 12, 2016 07:37
Show Gist options
  • Save YozhEzhi/c55c6619ed8eca67c7ca2069911b3097 to your computer and use it in GitHub Desktop.
Save YozhEzhi/c55c6619ed8eca67c7ca2069911b3097 to your computer and use it in GitHub Desktop.
function bind(func, context) {
return function() {
return func.apply(context, arguments);
};
}
var user = {
firstName: "Вася",
sayHi: function() {
alert( this.firstName );
}
};
setTimeout(bind(user.sayHi, user), 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment