微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

这两个使用对象原型的代码段是否完全相同?

如何解决这两个使用对象原型的代码段是否完全相同?

function Plant () {          
    this.country = "Mexico";
    this.isOrganic = true;                                                                                                                          
    }
    
    Plant.prototype.showNameAndColor =  function () {
    console.log("I am a " + this.name + " and my color is " + this.color);
    }
    
    Plant.prototype.amIOrganic = function () {
    if (this.isOrganic)
    console.log("I am organic,Baby!");
    }

上面的代码是否类似于下面的代码

function Plant () {          
    this.country = "Mexico";
    this.isOrganic = true;                                                                            
    this.showNameAndColor =  function () {
    console.log("I am a " + this.name + " and my color is " + this.color);
    }
    this.prototype.amIOrganic = function () {
    if (this.isOrganic)
    console.log("I am organic,Baby!");
    }
    }

* 1。上面的两个代码段是否完全相似?

  1. 在第一个代码段中,有两个函数showNameAndCloramIOrganic使用Plant.Prototype进行设置,这意味着所有将继承Plant对象的新对象都可以访问这些函数除了其自身属性以外的两个功能?*

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。