Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Created May 17, 2016 00:45
Show Gist options
  • Save andrewjmead/9a4e37ffc95d3f425149761d1633221f to your computer and use it in GitHub Desktop.
Save andrewjmead/9a4e37ffc95d3f425149761d1633221f to your computer and use it in GitHub Desktop.
Example of custom this keyword
var obj = {
age: 99,
someFunc: function () {
console.log('age', this.age);
}
}
// Uses the default this definition which would be the obj object
obj.someFunc();
// Has the this keyword set to whatever you want!
obj.someFunc.apply({age: 25});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment