Last active
November 7, 2020 18:11
-
-
Save lumosmind/71e29b2ab9982cec0147e66e9f30da8b to your computer and use it in GitHub Desktop.
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(23, function(data3){ | |
//3. callback fonksiyon gövdesi | |
console.log(data,data3) | |
getData(24, function(data4){ | |
//4. callback fonksiyon gövdesi | |
console.log(data,data4) | |
getData(25, function(data5){ | |
//5. callback fonksiyon gövdesi | |
console.log(data,data5) | |
getData(26, function(data6){ | |
//... | |
}); | |
}); | |
}); | |
}); | |
}); | |
}; | |
getData(id, callback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment