let bigint = BigInt(3);
let bigint = 3n;
let val = null;
let val2 = val ?? 'val2'; // val2
Promise.allSettled([fetch1(), fetch2(), fetch3()]).then((result) => {
console.log(result[0]);
console.log(result[1]);
console.log(result[2]);
});
let arr = { key1: { b: "c" } };
let result = arr.key2?.c; // undefined
let browserWindow = globalThis;
let nodeGlobal = globalThis;