I\'ve seen code snippets like these:
export interface IUser { email?: string; firstName?: string; lastName?: string; }
But why
If I am not mistaked, its to indicate that its optional, that means that it can be null.