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?