पैरेंट क्लास के कंस्ट्रक्टर को कॉल करने के लिए सुपर () फंक्शन का इस्तेमाल करें और ऑब्जेक्ट के पैरेंट क्लास पर फंक्शन एक्सेस करें।
उदाहरण
सुपर को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं ()
लाइव डेमो
<!DOCTYPE html> <html> <body> <script> class Department { constructor() {} static msg() { return 'Hello'; } } class Employee extends Department { constructor() {} static displayMsg() { return super.msg() + ' World!'; } } document.write(Employee.displayMsg()); </script> </body> </html>