Skip to content

Instantly share code, notes, and snippets.

@moiz-frost
Created September 3, 2019 19:08
Show Gist options
  • Save moiz-frost/677f1a703eb575c8a46e8346144c2b89 to your computer and use it in GitHub Desktop.
Save moiz-frost/677f1a703eb575c8a46e8346144c2b89 to your computer and use it in GitHub Desktop.
Binding this context
function printCar() {
console.log(this)
}
var car = {
speed: 240
}
printCar = printCar.bind(car)
printCar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment