✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Kreuzen Sie an, welche Objekt-Initialisierungen sich fehlerfrei kompilieren lassen: [EK]
type Person = { id?: number; name: string };
StrictNullChecks sind aktiviert, der TS-Kompiler unterscheidet also zwischen null und undefined.
"compilerOptions": { "strictNullChecks": true }