[Javascript] 비동기 함수, Promise, then, async, await 예제
//-------------------------------------- //then을 이용해 순차적으로 덧셈 function proc1(arg1){ console.log('proc1 - 0', arg1); fnPromise(1, 10) .then( ret => { //resolve console.log('then -1', ret); r...
javascript