....これはjavascriptの終了ですか?私はこれを持っている
function MyFunction() {
var myVar = "I think I am encapsulated";
this.getMyVar = function() {
return myVar;
}
}
var myProperty = new MyFunction();
console.log(myProperty.getMyVar());
myProperty.myVar = "you're not encapsulated";
console.log(myProperty.getMyVar());
それは、出力は: "私は二度カプセル化されたと思います"。どうして?私はこれがクロージャーだとは思わなかった...
はい。 –