let num = 9_000_000;
let str = "h e l l o";
str = str.replaceAll(" ",""); // "hello"
let val = undefined;
val ??= 'val';
Promise.any(([promise1,promise2,promise3])
.then((result)=>{
// 가장 먼저 성공한 프로미스의 결과
}).catch((e)=>{
// 전부 실패할경우
}
);