Most voted "super" questions
2 questions
Sort by count of
-
2
votes1
answer409
viewsWhat is the "super()" operator for in Javascript?
What is the operator’s functionality super() which lies within the method constructor?
-
0
votes1
answer40
views"super" and private variables
In the case below, it makes sense to call super() in class B_Class since the variable a of A_Class is private? It would be more feasible not to use the parent-class builder? Compiling this code…