sum-type Questions
2
Solved
Union types, also known as sum types are a powerful language feature that I find myself using often in TypeScript
something along the lines of:
let a: string | number = “hello”
a = 3
How would I a...
Stokeontrent asked 25/6, 2022 at 17:12
1
© 2022 - 2024 — McMap. All rights reserved.