Skip to content

Instantly share code, notes, and snippets.

@griffinmichl
Created May 17, 2016 16:59
Show Gist options
  • Save griffinmichl/55729a901af3bdba1aed1a818e63e4c8 to your computer and use it in GitHub Desktop.
Save griffinmichl/55729a901af3bdba1aed1a818e63e4c8 to your computer and use it in GitHub Desktop.
function sayHello() {
console.log('My name is', this.name)
}
const amy = {
name: 'amy',
speak: debounce(sayHello),
}
amy.speak()
// 'My name is undefined'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment