Oris
Today
Universe
Explore
Studio
Authors
Account
Lesson 1 of 8
With strictNullChecks enabled, which assignment is a type error?
let name: string = null;
let name: string | null = null;
let name: string = "Ada";
let name: null = null;
Check
Today
Universe
Explore
Profile