Skip to content

Instantly share code, notes, and snippets.

@dignifiedquire
Created January 15, 2016 13:51
Show Gist options
  • Save dignifiedquire/c073a644a45b275d85dc to your computer and use it in GitHub Desktop.
Save dignifiedquire/c073a644a45b275d85dc to your computer and use it in GitHub Desktop.
'use strict'
const myObj = {
value: 10,
getValue () {
return this.value
}
}
console.log(myObj.getValue())
// 10
console.log(myObj.getValue.bind(null)())
// throws
console.log(myObj.getValue.bind({value: 15})())
// 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment