inheritance
Last updated
Was this helpful?
Last updated
Was this helpful?
⟩ ⟩ ⟩ ⟩ inheritance
access properties on / 's . (super.prop
/ super[expr]
are valid in any in / )
invoke superclass constructor. (super(...args)
is valid in class constructors)
super - invoke/access superclass/parent's constructor/method/properties.
- 說明 class A 與 class A extends Object 有何不同 ⭐️
👉 See: JS.info ⟩