interface vs class typescript code example
Example 1: when to use type vs interface typescript
type Person = {
name: string;
age: number;
}
type speak = (sentence: string) => void;
interface Person extends Human {
name: string;
age: number;
}
interface speak {
(sentence: string): void;
}
Example 2: typescript class interface
interface IPerson {
name: string
age: number
hobby?: string[]
}
class Person implements IPerson {
name: string
age: number
hobby?: string[]
constructor(name: string, age: number, hobby: string[]) {
this.name = name
this.age = age
this.hobby = hobby
}
}
const output = new Person('john doe', 23, ['swimming', 'traveling', 'badminton'])
console.log(output)
Example 3: typescript type vs interface
type Weekday = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday';
let day1: Weekday = 'Monday';
let day2: Weekday = 'January';
interface Person {
firstName: string;
lastName: string;
age: number;
}
let person1: Person = {
firstName: 'James',
lastName: 'Smith',
age: 30
}
let person2: Person = {
firstName: 'Mary',
lastName: 'Williams'
}
Example 4: typescript interface vs type
interface Car {
name: string;
brand: string;
price: number;
}
type Car = {
name: string;
brand: string;
price: number;
}
interface Car extends Vehicle {
name: string;
brand: string;
price: number;
}
type Car = Vehicle & {
name: string;
brand: string;
price: number;
}