explain the purpose of the ‘in’ operator in typescript code example
Example: ?? Operator in TypeScript
"Nullish Coalescing"
If the left operand is null or undefined,
the ?? expression evaluates to the right operand:
null ?? "n/a"
undefined ?? "n/a"
Otherwise, the ?? expression evaluates to the left operand:
false ?? true
0 ?? 100
"" ?? "n/a"
NaN ?? 0
Notice that all left operands above are falsy values.
If we had used the || operator instead of the ?? operator,
all of these expressions would've evaluated to their
respective right operands:
false || true
0 || 100
"" || "n/a"
NaN || 0