Created
November 7, 2020 17:13
-
-
Save lumosmind/11845ac80566c2474dd4a6097c49392f to your computer and use it in GitHub Desktop.
callback-example
This file contains hidden or 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
const id = 21; | |
const callback = function(data){ | |
console.log(data) | |
}; | |
getData(id, callback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment