inheritance in typescirpt code example
Example 1: classes in typescript
class Info {
private name: string ;
constructor(n:string){
this.name = n ;
};
describe(){
console.log(`Your name is ${this.name}`);
}
}
const a = new Info('joyous');
a.describe();
Example 2: class inheritance in typescript
class Info {
protected name: string ;
constructor(n:string){
this.name = n ;
};
describe(){
console.log(`Your name is ${this.name}`);
}
}
class Detail extends Info{
constructor(name:string, public age:number){
super(name);
}
findAge(){
console.log(`${this.name} age is ${this.age}`)
}
}
const b = new Detail('jank', 23);
b.describe();
b.findAge();