3. Interfaces | Types | typeof | in operator | optional nullish - Typescript
Interface Basics
An interface is a blueprint that defines the shape of an object.
//Interfaces are a way to define the shape of an object
interface User333{
id:string;
name:string;
email?: string;
}
const user333:User333 = {
id:"1",...