show/hide this revision's text 3 Fixed the broken link to the book cover image. Minor edit: grammar/spelling/case/punctation/etc.

I could quote most of Douglas Crockford's excellent book JavaScript: The Good Parts.

alt text

But I'll take just one for you, always use === and !== instead of == and !=

alert('' == '0'); //false
alert(0 == ''); // true
alert(0 =='0'); // true

== is not transitive. If you use === it would give false for all of these statements as expected.

show/hide this revision's text 2 Maybe not all of the book, but most of it :)

I could quote all most of Douglas Crockford's excellent book :

JavaSccript the good parts

But I'll take just one for you, always use === and !== instead of == and !=

alert('' == '0'); //false  
alert(0 == ''); // true  
alert(0 =='0'); // true

== is not transitive. If you use === it would give false for all of these statements as expected.

    Post Made Community Wiki by Community
show/hide this revision's text 1