Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does es6 judge whether two strings are equal?

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "es6 how to judge whether two strings are equal". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "es6 how to judge whether two strings are equal".

Judgment method: 1, using the "= =" operator, you can compare whether the values on both sides of the equation are equal, the syntax "string 1 = = string 2"; 2, with "Object.is ()", the syntax "Object.is (string 1, string 2)", if the two strings are of the same length and the same characters are arranged in the same order, then the two strings are equal.

The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.

Es6 determines whether two strings are equal.

Method 1: use the = = operator

The = = operator to compare whether the values on both sides of the equation are equal

Example: determine whether two strings are equal

Var x = "hello"; var y = "HELLO"; var z = "hello"; console.log (x = = y); / / output: falseconsole.log (x = = z); / / output: true

Method 2: use the Object.is () method

The Object.is () method determines whether two values are the same value. The two values are equal if the following conditions are met:

It's all undefined.

It's all null.

All true or false.

Are all strings of the same length and the same characters are arranged in the same order

Are all the same objects (meaning that each object has the same reference)

It's all numbers and

All + 0

All are-0

It's all NaN.

Or both are non-zero and non-NaN and have the same value

Example: determine whether two strings are equal

Var x = "hello"; var y = "HELLO"; var z = "hello"; console.log (Object.is (XMagnez)); / / output: trueconsole.log (Object.is (xmemy)); / / output: false

Thank you for your reading, the above is the content of "es6 how to judge whether two strings are equal". After the study of this article, I believe you have a deeper understanding of how es6 judges whether two strings are equal, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report