# 여러 개의 Promise 동시 실행, 하나라도 거부되면 전체 거부Promise.all([function1(), function2(), function3()]).then(() => {});