Possible Duplicate:
Maximum length of variable name in JavaScript
While reading on a bit of JS, I thought to myself: how long can my names be?
function myNormalFuncName () {//...}
var myNormalVarName = 'how long?';
So my question is how long can it be? Is there any kind of mechanism that stops this from happening, or is there any kind of error thrown? Or maybe even a overflow or something like that? Or will it just work fine?
Maybe it depends more on the implementation? So how about modern browsers.
Would love to hear what skilled developers know about this.