I've been working with object literals for a while now but I'm stumped as to why the object property is returning undefined
when accessing it using this
here's an example of what I am trying to do...
var x = (function(){
return{
a: "1",
b : this.a
};
})();
console.log(x.b);
what am I doing wrong here?
Use a function to return the object, which will assign the invoking object to
this
JS Fiddle: http://jsfiddle.net/AFtT5/1/
You could also use a get method:
JS Fiddle: http://jsfiddle.net/AFtT5/2/