I want to access an object's properties from an object's function. I have tried:
var ui_conf = {
Conf: {
"a": "b",
"c": "d",
"f": {}
},
someFunc: function(paramx, paramy) {
//access conf.a
console.log(this.Conf) //undefiend
console.log(window.ui_conf) //undefiend
},
};