Answers for "typescript class constructor"

2

typescript class constructor

class Point {
  x: number;
  y: number;
 
  // Normal signature with defaults
  constructor(x = 0, y = 0) {
    this.x = x;
    this.y = y;
  }
}
Posted by: Guest on April-01-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language