Constructor in TypeScript

class Car {
   speed: string;
   constructor(speed: string) {
        this.speed = speed;
        alert('car is initialised');
    }
}

var car1 = new Car('40');
var car2 = new Car('60');

results matching ""

    No results matching ""