I see code like this all over the web
var days= "Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" ");
Why do that instead of
var days = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"];
I don't think laziness or ignorance has anything to do with it. This is out of jQuery 1.4.2
props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" ")
They do it all over the place.