Why is this undefined:

var testObj = {
   CONSTANT: "blah",
   someVal: this.CONSTANT
}
console.debug(testObj.someVal); // prints "undefined"

If it has to do with the fact that I am actually creating a new prototype and therefore the this keyword is not working, then I'd also like to know the following:

I am using Dean Edward's base.js and I am trying to do something similar to the above: I have an object that extends Base:

Test = Base.extend({
  testObj: {
   someVal: this.CONSTANT
  }
  CONSTANT: "blah";
});
var test1 = new Test();
console.debug(test1.testObj); // someVal is undefined

In the above, if I do someVal: "blah" this it works as expected; I'm just not sure why I can't access this.CONSTANT. If its because this is applied to the scope of testObj and not Test, then how do I solve this (I tried setting a that: this variable, with no luck)?

Update: based on the answers I see that I am doing this wrong. My question now is: using the base.js model, is there a way to have "class-level" constants that are accessible from within the same class (outside of functions)?

link|improve this question

feedback

2 Answers

this references the window not the object.

var CONSTANT =  "blah";
var testObj = {
   someVal: this.CONSTANT
}
testObj.someVal; // blah

You can't access the object itself with object notation.


You a function to change the scope of this:

function testObjCreator() {
  this.CONSTANT = "blah";
  return ({
      val: this.CONSTANT
  })
}
var a = new testObjCreator()
a.val; // blah
link|improve this answer
good point: what about the 2nd case (which is what I'm really interested in). looking at the base.js (the Animal class example) Dean uses "this" to access the object itself. thanks. – oym Oct 19 '11 at 14:46
in the base.js example I gave, it definitely seems like a scope issue to me ("this" is not referencing the right scope)..I just don't know how to fix that. – oym Oct 19 '11 at 14:48
In the second example, this is still the window – Joe Tuskan Oct 19 '11 at 14:55
is there a way to access the CONSTANT? – oym Oct 19 '11 at 14:56
I've added an update to show how you could change the scope of this – Joe Tuskan Oct 19 '11 at 14:59
feedback

"this" is (locally) defined only within a function which has been called as a method.

base.js uses "this" only within a function definition, where it designates the object on which the function was called as a method. Your examples don't contain any function definitions.

link|improve this answer
good point; is there a way to do what I am trying to do? basically having class level constants that I can access within the same class? – oym Oct 19 '11 at 15:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.