The difference between = (equal to) and = (all equal to) in Javascript

Source: Internet
Author: User

What is the difference between = (equal to) and = (all equal to) in JavaScript? Let's take a look at two examples:

VaR n = '20140901 ';

If (n = 100)

{

Alert ('equals ');

}

Else

{

Alert ('not equal ');

}

The result is "equal ";

When determining whether a string is the same,

VaR n = false;

If (n = 'false ')

{

Alert ('equals ');

}

Else

{

Alert ('not equal ');

}

The result is "not equal ".

Cause: = when determining whether the two values are the same, the system first checks whether the data types are consistent. If the data types are the same, the system continues to judge whether the content is the same. =, the data type is ignored, and the switch directly determines that the content is equal to the total value.

In JS, the use of undefined and null with = is equivalent, and the use of = is not equal.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.