从 javascript 中返回的对象中引用私有方法的最佳方法是什么?我给你留下一些示例代码:
var HelloWorld = (function(){
var hello = function(){
console.log("hello")
},
return{
addToList: function(){
//how can i reference hello from here dynamically like:
//this["hello"] or this["hell" + "o"]
}
}
})()