You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
제가 알기론 비동기 fetch같은 함수사용시 콜백을 안쓰고 위처럼 내부에 정의할시, 예를 들면
fetch('www.....'){
console.log(내가 fetch후 갖고 오고 싶은데이터)
}
와 같이 log찍으면 비동기니까 fetch 해서 데이터 오기전에 이미 console.log 찍어버리니 undefined 에러 뜰거에요. 그런데 콜백으로 console을 함수써서 순서를 정해 버리면 데이터 받기 전까진 console.log가 안돌아가니 에러가 안나죠. 비동기에서 순위 정할수 있는걸로 알고 있어요.
3장. 자바스크립트에서 비동기 처리 다루기 · GitBook
https://learnjs.vlpt.us/async/
The text was updated successfully, but these errors were encountered: