async function a () {
await new Promise( () => {
console.log('execute!!!!!!!!!!!!!!');
});
return 1;
}
a().then(console.log);

1의 출력 여부를 적고. 이유를 서술하시오.