深度学习 Kaggle新赛NBME-临床患者病例评分大赛指导班(NLP·Token分类)
==> 继承 === 共有属性 + 私有属性 === prototype
属性 + 构造函数上的属性
function Person( name ){
this.name = name}Person.prototype.think = truePerson.prototype.foot = 'two'Person.prototype.say = function(){
console.log( 'I can say' )}Person.prototype.walk = function(){
console.log( 'I can walk' )}