xxleyi / learning_list

聚集自己的学习笔记
11 stars 3 forks source link

class in JS #245

Open xxleyi opened 4 years ago

xxleyi commented 4 years ago
class Foo {
  static onFoo() { }
  onFooPrototype() { }
  onFooInstance = () => {}
}

console.dir(new Foo())

image