You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
163 B

2 years ago
  1. class Point {
  2. x = 1
  3. y = 2
  4. scale(n:number) {
  5. this.x *= n
  6. this.y *= n
  7. }
  8. }
  9. const p = new Point()
  10. p.scale(10)
  11. console.log(p.x, p.y)