Aryan PrajapatKnowledge Contributor
What is callback in callback
What is callback in callback
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
You can nest one callback inside in another callback to execute the actions sequentially one by one. This is known as callbacks in callbacks.
loadScript(“/script1.js”, function (script) {
console.log(“first script is loaded”);
loadScript(“/script2.js”, function (script) {
console.log(“second script is loaded”);
loadScript(“/script3.js”, function (script) {
console.log(“third script is loaded”);
// after all scripts are loaded
});
});
});