Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created December 19, 2022 22:08
Show Gist options
  • Save caglarorhan/dd69adc562b673c020a39321463ea658 to your computer and use it in GitHub Desktop.
Save caglarorhan/dd69adc562b673c020a39321463ea658 to your computer and use it in GitHub Desktop.
Bind example in javascript
const main =function(){
this.name="The Main function"
helper.bind(this);
helper();
console.log("FROM MAIN:",this.name);
}
function helper(){
console.log("FROM HELPER:",this.name);
this.name = "The Helper Function";
console.log("FROM HELPER:",this.name);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment