Crockford's book, JavaScript: The Good Parts, says (on page 114) that constructor functions should always be given names with an initial capital letter (ie. Point), and that function names with initial capital letters should only be used with constructor functions (everything else should be lowerCase).
This convention helps us avoid forgetting to use the new operator with constructor functions.
He goes on to say that "[a]n even better coping strategy is to not use new at all."
My question is, how do we program JavaScript without using new at all?
- We can avoid
new Object()andnew Array()with the literal{}and[]. - We can avoid
new Number(),new Boolean(), andnew String()with0,trueand''. - We can avoid
new RegExp()with something like/pattern/.
How do we avoid new Date()?
And, most importantly, how do we avoid using new with our own custom Objects?
newfor a great deal and it has helped alot in organising it. – pimvdb Mar 7 '11 at 19:38