Code QuizBeginner

Primitive Type Annotations

Spot the mismatch when a value does not match its declared primitive type.

Codetypescript
let age: number = "30";
let isActive: boolean = true;
let username: string = "alice";

What is the bug in this code?