Closed kirandash closed 1 year ago
@kirandash I would like to work on this issue , please assign it to me ..
@rahulrana701 any update on this?
hi @kirandash will surely submit a pr for this by tomorrow, I was busy with my end sems..
hi @kirandash here is the link of the pr for this issue , sorry for the late response https://github.com/bgwebagency/who-wants-to-be-a-javascriptaire/pull/53#issue-1750432370
Thanks for your contribution @rahulrana701
Please create an MCQA to be added as question number 38.
The multiple choice question should be on the topic "Inheritance, Subclassing and Extending built in class". The difficulty level should be "Medium/Hard"
Tasks:
Explanation:
ES6
, extends keyword can be used for extending class. ES5 had other ways of extending classSample interview question for inspiration
super
keyword?super
keyword is used to call parent constructor, method or properties.super()
;super.prop
;super.method()
super.methodName()