我现在搜索了一个小时(没有任何成功),我如何在另一个对象中定义一个对象(在 javascript 中):
function UserStat(arr) {
var arrx = arr;
this.day = function(dateofday) {
//Some code going here which results will be stored variables like:
this.a = someInnerFunction();
this.b = someOtherFunction();
}
}
当我创建外部函数的实例时,我想访问这些变量,如果可能的话,就像这样:
var value = new UserStat(arr1).day('2012-10-20').a
预先感谢您的任何帮助!