Created
July 11, 2022 05:10
-
-
Save mohammadkarbalaee/330e72ee504d377f6e4b95cbb64ee2b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
this is how you pass arguments when assigning a callback in React | |
*/ | |
const callback = (event,argument) => { | |
console.log(argument) //will print yess | |
} | |
<div onClick={this.callback.bind(this,"yes")}> | |
hello world! | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment