← Code LabTypeScript0/50 solved · 0%
Foundations · easy

16. Non-null Assertion

Telling TS a value is definitely not null.

Use `!` to access `name` on a potentially null `User` object.
Required in your answer: user!.name