20.
In TypeScript, when a numeric enum is defined without assigning a value to its first member, what value does it default to?
undefined
-1
1
0
Correct: D
When a numeric enum is defined without explicitly assigning a value to its first member, it automatically defaults to the value 0. The subsequent members will be assigned incremental values by default unless otherwise specified.