Promise

function a(){
    document.write("a");
    document.write("<br>");
}
function b(){
    document.write("b");
    document.write("<br>");
}
a();
b();

비동기

function a(){
    setTimeout(function(){
        console.log('A');
    },1000);
}
function b(){
    console.log('B');
}
a();
b();

콜백지

Promise

Last updated