I have a
var code = new CodeObject();
is there a way to get the name of the instance ("code" in the example) inside the CodeObject function?
something like:
function CodeObject() {
this.id = this.instanceName;
}
thanks in advance
I know that in general the thing is really unpredictable, but mine is a really specific case where the constructor is always called in the way shown above.
And I would need it because I want to use the name of the instance without having to pass it to the constructor to avoid repetition of chars (the JSP file that contains the calls is too big already).
array.push(new CodeObject())-- what would the name be then? If you want the object to have a name, then pass the name as a constructor parameter. – Jon Nov 14 '12 at 12:46