Intersection TypesAn intersection type combines multiple types into a single type.Example:1234567891011121314151617type User = { name: string;};type Address = { city: string; country: string;};// Intersection Type "Customer"type Customer = User & Address;const benny: Customer = { city: 'Berlin', country: 'Germany', name: 'Benny'};