Equal Operator : Relational Operators : Operators JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Operators » Relational Operators »

 

Equal Operator



























If the values are equal, true is returned from the equal operator (==).

If the values are not equal, false is returned from the operation.

JavaScript attempts to convert the operands to the same data type before comparing the values for all versions of JavaScript except 1.2. JavaScript adheres to the following rules when performing type-conversion:

True is converted to the number 1, and false is converted to zero before being compared.

If either of the operands is NaN, the equality operator returns false.

Null and undefined are equal.

Null and undefined are not equal to 0 (zero), "" , or false.

If a string and a number are compared, attempt to convert the string to a number and then check for equality.

If an object and a string are compared, attempt to convert the object to a string and then check for equality.

If an object and a number are compared, attempt to convert the object to a number and then check for equality.

If both operands of an equality operation are objects, the address of the two objects are check for equality.

By setting the LANGUAGE attribute of the

If the LANGUAGE attribute is set to JAVASCRIPT1.2, no type-conversion will be used.












<HTML>
<SCRIPT LANGUAGE="JAVASCRIPT1.3">
    // Type-conversion turned on
    document.write("The == operator with type-conversion turned on returns: ");
    document.write(3=="3");
</SCRIPT>

<SCRIPT LANGUAGE="JAVASCRIPT1.2">
    // Type-conversion turned off

    document.write("<BR>The == operator with type- ");
    document.write("conversion turned off returns: ");
    document.write(3=="3");
</SCRIPT>
</HTML>



Quote from:

Pure JavaScript (Paperback)

by R. Allen Wyke (Author), Jason Gilliam (Author), Charlton Ting (Author)

# Paperback: 1448 pages

# Publisher: Sams; 1st edition (August 1999)

# Language: English

# ISBN-10: 0672315475

# ISBN-13: 978-0672315473





HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Operators
» Relational Operators