Wednesday, January 7, 2009

What is === operator in Javascript?

=== is strict equality operator ,it returns true only when the two operands are having the same value without any type conversion.

Example

alert(1=="1"); returns true
alert(1==="1"); returns false

No comments: