😎풀이
Promise를 await한 후 계산해야 한다는 지식이 있느냐를 물어보는 문제이다.
연산속도가 빠르신 분 풀이를 보니 Promise.all
을 사용하셨던데 그게 더 빠른 것 같았다.
type P = Promise<number>
async function addTwoPromises(promise1: P, promise2: P): P {
const pr1 = await promise1
const pr2 = await promise2
return pr1+pr2
};