|
|
|
|
|
by TeffenEllis
1052 days ago
|
|
Huh wow! I did not know that! I think TypeScript always kept this hidden from me, but it makes sense. Another perk of `await` is that it collapses all promises into their final value, regardless of how many nested pending promises are expressed: const foo = await Promise.resolve(Promise.resolve("abc"))
console.log(foo.length) // 3
|
|