Promise

๋™๊ธฐ

function a(){
            document.write("a")
            document.write("br")
        }
        function b(){
            document.write("b")
        }
        a()
        b()
        //ab๊ทธ๋Œ€๋กœ ์ถœ๋ ฅ

๋น„๋™๊ธฐ

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

a()
b()
//ba ์ถœ๋ ฅ

์ฝœ๋ฐฑ ์ง€์˜ฅ

Promise

Last updated

Was this helpful?