Paracetamol.js๐Ÿ’Š| #120: ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ์ฝ”๋“œ ์„ค๋ช…

2579 ๋‹จ์–ด webdevjavascriptspanishdiscuss

Explica este codigo JavaScript



๋‚œ์ด๋„: Avanzado




function asyncFunc() {
  console.log('asyncFunc');
  return new Promise(
    (resolve, _reject) => {
      console.log('new Promise()');
      resolve();
    });
}
console.log('START');
asyncFunc()
  .then(() => {
    console.log('.then()'); // (A)
  });
console.log('END');


A. START , asyncFunc , .then() , new Promise() , ENDB. asyncFunc , new Promise() , START , .then() , ENDC. START , asyncFunc , new Promise() , END , .then()D. START , asyncFunc , new Promise() , END , undefined
Respuesta en el primer comentario.

์ข‹์€ ์›นํŽ˜์ด์ง€ ์ฆ๊ฒจ์ฐพ๊ธฐ