基本上我希望console.log 输出'是的',但事实并非如此。我能做些什么来让它输出是的,而不是直接在里面引用它usefulFunction
?
App = {
config: {
updateThis: 'false'
},
init: function(){
this.usefulFunction(this.config.updateThis);
this.consoleIt();
},
usefulFunction: function(item){
item = 'yeah';
// swap the above line for the line below and it works as expected
// this.config.updateThis = 'yeah';
},
consoleIt: function(){
console.log(this.config.updateThis);
}
}
App.init();