TypeScript Simple Types
let firstName: string = "Ada"; let age: number = 28; let isEmployed: boolean = true; // Reassigning with the wrong type is a compile-time error // age = "twenty-eight"; // Error: Type 'string' is not assignable to type 'number'.