예시 요구사항
axios, jquery)const callbackHellDemo = () => {
$(document).ready(() => {
$.ajax({
url: "https://jsonplaceholder.typicode.com/posts/1",
type: "GET",
dataType: "json",
success: () => {
console.log("B");
$.ajax({
url: "https://jsonplaceholder.typicode.com/posts/1",
type: "GET",
dataType: "json",
success: () => {
console.log("C");
$.ajax({
url: "https://jsonplaceholder.typicode.com/posts/1",
type: "GET",
dataType: "json",
success: (result) => {
console.log("D");
console.log(result);
}
});
}
});
}
});
});
console.log("A");
};