当前位置: 首页 > 面试经验 >

面试题:类继承

优质
小牛编辑
123浏览
2023-03-28

面试题:类继承

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
 //1. "Chinese"类继承于"Human"类
// 2. "Human"类实现一个函数"getName",返回该实例的"name"属性
// 3. "Chinese"类构造函数有两个参数,分别为"name"、"age"
// 4. "Chinese"类实现一个函数"getAge",返回该实例的"age"属性
        class Human{
            constructor(name){
                this.name=name;
                this.kingDom="animal";
                this.color=['yellow','green','red']
            }
            getName(){
                return this.name;
            }
        }

        class Chinese extends Human{
            constructor(name,age){
                super(name);
                this.age=age;
            }
            getAge(){
                return this.age;
            }
        }
       
    </script>
</body>
</html>
 类似资料: