15、js - 构造函数的原型对象

<script>

    // 构造函数
    function Student(name, age) {
        this.name = name;
        this.age = age;
    }

    // 原型对象
    // 公共的属性和方法放在原型对象上,可减少内存浪费
    // Student.prototype.class = 20;
    // Student.prototype.studyFunc = function () {
    //     console.log(this, '我的名字是' + this.name);
    // }
    // 上面的代码等价于下面这样写,这是推荐的写法
    Student.prototype = {
        // 当修改原型对象的引用时,需要自己添加constructor属性,这个属性不可缺少
        constructor: Student,
        class: 20,
        studyFunc() {
            console.log(this, '我的名字是' + this.name);
        }
    }

    const st1 = new Student('Echo', 12);
    const st2 = new Student('Shally', 15);
    st1.studyFunc(); // Student {name: 'Echo', age: 12}   '我的名字是Echo'
    console.log(st1.class); // 20
    console.log(st1.studyFunc === st2.studyFunc); // true
    // Student.prototype的constructor属性指向原型对象所在的构造函数
    console.log(Student.prototype); // 


    // 给数组扩展方法:求最大值
    Array.prototype.maxNum = function () {
        return Math.max(...this);
    }
    // 给数组扩展方法:求和
    Array.prototype.sums = function () {
        return this.reduce((prev, item) => prev + item, 0);
    }
    console.log([1, 2, 3, 4, 5, 6].maxNum());
    console.log([1, 2, 3, 4, 5, 6].sums());

</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值