美文网首页
js-对象封装

js-对象封装

作者: 流浪的風 | 来源:发表于2017-05-26 11:33 被阅读0次

    function Cat (name,age) {

     this.name = name;

    this.age = age;

    }

    Cat.prototype.type = "猫科动物";

    Cat.prototype = {

    say:function(){

    console.log("喵咪~~~");

    },

    run:function(r){

    console.log("我的跑动速度是:"+r);

    }

    }

    var c = new Cat();

    相关文章

      网友评论

          本文标题:js-对象封装

          本文链接:https://www.haomeiwen.com/subject/cjjuyttx.html