继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Es6 class_02.............

qaytix
关注TA
已关注
手记 104
粉丝 37
获赞 165
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>

</body>
</html>
<script type="text/javascript">
    class People{
        constructor(name,age){
            this.name=name;
            this.age=age;
        }

        run(){
            console.log(this.name+"正在跑步");
        }

        eat(){
            console.log(this.name+"正在吃饭");
        }

        show(){
            console.log(this.name+"今年"+this.age+"岁");
        }

        init(){
            this.run();
            this.eat();
            this.show();
        }
    }

    var obj=new People('tahirjan',26);
    obj.init();
</script>
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP