Code QuizBeginner

Union Types

Identify a value that falls outside a union type.

Codetypescript
let id: string | number = true;
console.log(id);

What is the bug in this code?