Isn't "height" the "dynamic property" of another "dynamic property" this["something"] (which is equivalent to this.something)?
the fact that you use [] syntax to access the property this.something is just a syntactical shorthand and sometimes a workaround: you can't define this.return (since return is a keyword), but you can do this["return"]. On Fri, Nov 28, 2008 at 5:08 AM, ibnu saud <[EMAIL PROTECTED]> wrote: > its an String Array the notation itself describes its an array []. > > > On Fri, Nov 28, 2008 at 2:00 PM, Jake Churchill <[EMAIL PROTECTED]>wrote: > >> I call it array notation but I'm not sure if that's "technically" >> correct >> >> >> Nate Pearson wrote: >> >> What's it called when I call something by using a string? >> >> Like when I do this[someObject].height = 10 >> >> someObject is a string. >> >> Thanks! >> >> -Nate >> >> > >

