class Year { constructor( public id : number, ) {} public happy()… — BLACK MANAGER Lite | Разработка — TG.ME

class Year {

constructor(
public id : number,
) {}

public happy() : void {
console.log(`Happy new ${this.id} year!`)
}

}

new Year(2025).happy();
🔥7😡1
December 31, 2024 1.2K