Skip to content

Instantly share code, notes, and snippets.

@pihamchi
Created June 16, 2022 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pihamchi/fe6af840824eb735674a6c33a46ecfbb to your computer and use it in GitHub Desktop.
Save pihamchi/fe6af840824eb735674a6c33a46ecfbb to your computer and use it in GitHub Desktop.
콜백지옥 수도코드 예시
$.get('url', function(response) {
자리를리턴하는함수(response, function(id) {
앉았는지를확인하는함수 (id, function(result) { //
음식을리턴하는함수(result, function(text) {
console.log(text);
});
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment