prototype

作者: 超人阿亮 | 来源:发表于2018-08-24 16:40 被阅读0次

定义和用法

prototype用于向对象添加属性和方法

object.prototype.name = value

实例

function employee(name,job,born){
    this.name=name;
    this.job=job;
    this.born=born;
}

var bill=new employee("Bill Gates","Engineer",1985);

employee.prototype.salary=null;
bill.salary=20000;

document.write(bill.salary);

相关文章

网友评论

      本文标题:prototype

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