I remember reading some "funny" examples once of weird results JavaScript can give when you, for example, add strings to numbers etc. Does anyone have any good examples or a link to the blog that I might have read them on? Which ones are likely to catch a programmer out in the real world?
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
|
All the ones that are described in: |
||||
|
|
|
The biggest gotcha in JavaScript is that the "==" operation performs type type coercion and should almost always be avoided. Instead you should use the "===" to do a true boolean comparison. For example, because of type coercion., 1 == true is true, but 1 === true is false. The == operator often hides type errors. As a further illustration of true and false in this context these cases From Crockford's The Elements of JavaScript Style are illustrative.
|
|||
|
|
I would go get a copy of Douglas Crockford's Javascript the Good Parts. Its probably the best book on Javascript in terms of pointing out the parts of javascript that are good and those tha should be avoided at all costs. |
||||
|
|