Code QuizBeginner

null and undefined Types

Spot the incompatibility between the `null` and `undefined` types.

Codetypescript
let value: null = undefined;
console.log(value);

What is the bug in this code?