When I typed this apparently innocent snippet of code:
values.name
gedit highlighted name as a keyword. However, name is not listed by the pages linked to by an answer to a question about reserved keywords. I also did a couple trivial tests in SpiderMonkey, but name seemed to act like an ordinary identifier.
A Google search didn't tell me much either. However, I did find a page listing name in "Other JavaScript Keywords". My guess is that name is a function or a member of some DOM element and does not intrude on the namespace.
Is name really a keyword in JavaScript? If so, what does it do?
nameis (was) used as an attribute of theaelement, so it could occur in DOM code. Maybe this is the reason your editor is highlighting it. – Thomas Apr 18 '10 at 20:05