Access JavaScript Object Literal value in same object

Adrian Florescu picture Adrian Florescu · Sep 30, 2012 · Viewed 8.7k times · Source

Possible Duplicate:
Self-references in object literal declarations

Is there any way access the value of a property name in the same object literal? Something like this:

myFunction.init({
    varOne: 'something',
    varTwo: this.varOne + 'something else'
})

Answer

jfriend00 picture jfriend00 · Sep 30, 2012

No, there is no way to access the object literal that is currently being defined from within the definition itself.

If you want to set properties based on the values of other properties, then you either need to base them both on some external value (that is not a property itself) or run an initializer function after the object literal is defined that can set some properties based on the values of other properties.