✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the TypeScript interface below, which of the following object literals is a correctly typed Student object?
interface Student {
id: number;
name: string;
major?: string;
}