Skip to content

Instantly share code, notes, and snippets.

@Spec007
Last active January 20, 2017 16:21
Show Gist options
  • Save Spec007/d4aa41675fbffbf95b512b72c180a383 to your computer and use it in GitHub Desktop.
Save Spec007/d4aa41675fbffbf95b512b72c180a383 to your computer and use it in GitHub Desktop.
Привязка контекста
function bind(func, context) {
return function() {
return func.apply(context, arguments);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment