Last active
November 7, 2020 17:32
-
-
Save lumosmind/927d463375eb84091803ae1ba29e4d7a to your computer and use it in GitHub Desktop.
pyramid of doom
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(data1){ | |
//1. callback fonksiyon gövdesi | |
console.log(data) | |
//asenkron kod | |
getData(22, function(data2){ | |
//2. callback fonksiyon gövdesi | |
console.log(data,data2) | |
}) | |
}; | |
getData(id, callback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment