ES6 Syntax and Feature Overview | Tania Rascia

PHOTO EMBED

Sun Oct 22 2023 21:38:51 GMT+0000 (Coordinated Universal Time)

Saved by @Spsypg #javascript

class Func {
  constructor(a, b) {
    this.a = a
    this.b = b
  }

  getSum() {
    return this.a + this.b
  }
}

let x = new Func(3, 4)
content_copyCOPY

https://www.taniarascia.com/es6-syntax-and-feature-overview/