JavaScript: Equality Operators and their evil twins.
careful with that equality operator...
There are four operators supported by JavaScript that one can use to check conditions for equality. == and != as with most of the high level languages. But they work differently. var five = 5; if( five <span...
[Read More]