promise
05_promise,Async-Await
Promise 위 객체는 비동기 작업이 맞이할 미래의 완료 또는 실패와 그 결과 값을 나타냅니다. 라고 되어 있다. 자세한건 코드를 직접 써보면서 이해를 해보자. 자세한 정보는 아래의 mdn사이트를 참조해도 좋을 것 같다. https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Promise Promise - JavaScript | MDN Promise 객체는 비동기 작업이 맞이할 미래의 완료 또는 실패와 그 결과 값을 나타냅니다. developer.mozilla.org Promise는 ES6부터 JS의 표준 내장 객체로 추가되었다. console.log(Promise) // f Promise() 위와 같이 객체로 포함되..