We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25b536 commit 9134ad3Copy full SHA for 9134ad3
learn/javascript/classes.md
@@ -252,7 +252,7 @@ Classes can extend from other classes. The extended class will receive all the p
252
and it can define new methods and properties. The extended class cannot access private state or private methods from the
253
parent class. If an extended class overrides the class constructor, it must call the original constructor by using
254
`super()`. If the extended class overrides a method that exists on the parent class, it can optionally call
255
-`super<method>()`.
+`super.<method>()`.
256
257
```js
258
class Point {
0 commit comments