JavaScript 小知識, 加沒加 prototype , 用法大不一樣

只有加了 prototype 的方法才能被實例訪問到.prototype

新建一個類code

function Pig() {
}

直接添加個方法io

Pig.sleep = function sleep() {}

再爲 Pig 的 prototype 添加一個方法function

Pig.prototype.eat = function eat() {}

新建實例class

let pape = new Pig()

pape.sleep
<- undefined

pape.eat
<- f eat() {}

耶✌️方法

相關文章
相關標籤/搜索