什么是JavaScript中的super()函数?

使用该super()函数可以调用父类的构造函数,并访问对象的父类上的函数。

示例

您可以尝试运行以下代码来实现 super()

<!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>

以上是 什么是JavaScript中的super()函数? 的全部内容, 来源链接: utcz.com/z/350228.html

回到顶部