class Year {
constructor(
public id : number,
) {}
public happy() : void {
console.log(`Happy new ${this.id} year!`)
}
}
new Year(2025).happy();
7
1December 31, 2024 1.2K
class Year {
constructor(
public id : number,
) {}
public happy() : void {
console.log(`Happy new ${this.id} year!`)
}
}
new Year(2025).happy();
7
1