1/*
2 != accept 1 as equals of true, 0 as equals of false and some others
3 (because the values are automatically casted when being compared).
4 !== accept only "real" equalities (i.e. compares both the value and the type)
5*/
6alert(1 != true); //this is false
7alert(1 !== true); //this is true