ECMAScript6 new value-added comparison function Object. is, ecmascript6

Source: Internet
Author: User

ECMAScript6 new value-added comparison function Object. is, ecmascript6

Before that, we use the equal sign "=" or equal sign "=" to compare values, and the third sign is more strict. If the two types are different, false is returned immediately.

In addition, there is only one value that is not equal to itself. It is NaN

Now ES6 adds an Object. is, which makes the comparison operation more chaotic. In most cases, Object. is equivalent to "=", as shown below:

1 = 1 // trueObject. is (1, 1) // true 'A' = 'A' // trueObject. is ('A', 'A') // true = true // trueObject. is (true, true) // true null === null // trueObject. is (null, null) // true undefined === undefined // trueObject. is (undefined, undefined) // true

But for NaN, 0, + 0,-0, it is different from "="

NaN = NaN // falseObject. is (NaN, NaN) // true 0 ===-0 // trueObject. is (0,-0) // false-0 = + 0 // trueObject. is (-0, + 0) // false

The above is all the content of this article. I hope you will like it.

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.