我正在学习Javascript,并且已经参加了本练习。我需要一些线索或解释来理解和解决问题。
我认为这很简单,但是我看不到,只能修改指示的区域。
var test_method = function () {
return {
config: {
"test_string": ""
},
init: function () {
alert(this.config.test_string);
}
}
}();
// Modifiable area
test_method.config.test_string = "Hello";
test_method2 = test_method;
test_method2.config.test_string = "Good Bye";
// END Modifiable area
test_method.init();
test_method2.init();
该练习表明alert()必须首先显示“ Hello”,然后显示“ Good Bye”,但现在只显示两次“ Good Bye”。