Promise 함수
동기(순서대로) / 비동기
function a(){
console.log("a")
}
function b(){
console.log("b");
}
a();
b();
//a
//bfunction a(){
setTimeout(function(){
console.log("a");
},1000);
}
function b(){
console.log("b");
}
a();
b();
//b
//aLast updated