I have an array declared like this:
var dict = [];
When I do this:
dict["watch"] = 0;
this expression alerts NaN
alert (dict["watch"]);
I know this is because watch() is a function that is part of the object prototype. Is there anyway around this so I can use any word as a key in my array?
I am using Firefox 3.6.6
Object.watch, then why are you seeing aNaNinstead of thewatchfunction in your alert? I'm Firefox 3.6.6 too, and I seefunction watch() { [native code] }. – Anurag Jul 17 '10 at 1:38dict["watch"]is a function. One of the thing my code does is:dict["watch"]++, so it was trying to increment a function. – SimpleCoder Jul 17 '10 at 1:44Object.prototypehas to be unenumerable, as it would otherwise show up infor..inloops, unless it's something that an application cannot live without :). It's a pretty handy way to monitor object changes without constantly polling them, and I hope all browsers added this to their arsenal of offerings. – Anurag Jul 17 '10 at 5:43NaN:) – Anurag Jul 17 '10 at 5:44