- 내 기능을 어떻게 작동시킬 수 있습니까? 나는 연회를 알 수 없다?
감사합니다.자바 스크립트 프로토 타입 및 개인 변수
- 목록 항목
- 목록 항목
- 목록 항목 그래서 당신은 프로토 타입을 사용할 수 있습니다
banque
에 대한 게터를 설정 당신이 할 수있는
function Personne(nom){
this.nom = nom;
var banque = 1500;
this.add = function(number){
banque = banque + number
}
this.getCpte = function() {
return banque
}
}
Personne.prototype.min = function(number){
banque = banque - number
}
var me = new Personne('albert')
console.log(me)
me.add(500)
me.min(500) // got banque is undefined
console.log(me.getCpte())
는'banque'는'Personne' 기능의 외부에 존재하지 않습니다 ... – Li357
어떻게이 존재하고 개인 VAR로 유지 할 수 있습니다 프로토 타입 방법을 사용하고 있습니까? –