Promise 함수

동기(순서대로) / 비동기

function a(){
    console.log("a")
}
function b(){
    console.log("b");
}
a();
b();

//a
//b
function a(){
    setTimeout(function(){
        console.log("a");
    },1000);
}
function b(){
    console.log("b");
}
a();
b();

//b
//a

Last updated