Get the App
SLTechnology News&Howtos  ›  Development  › 

How to use if including comma expressions in JavaScript

Shulou Source: shulou.com Published: 2022-06-02 11:30:30 09月16日 Update

This article is about how to use if including comma expressions in JavaScript. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Sometimes you will see that the if judgment in JavaScript contains a comma "," which is actually a comma expression. In the if condition, only the last expression plays a role in judgment.

Take a look at the following example:

Let a = 1, b = 2, c = 3 if only judges the last expression if (a = 10, b = 20, c = 3) {console.log ("c = = 3");} else {console.log ("c! = 3")} / / console output: / / c = = 3

There are three expressions in if above, the first two are not valid, only the last one is true, and only the last one is judged in if, so the result is true.

Although if only determines that there is the most one expression, the previous expression is also executed.

Please refer to the following code:

Let a = 10, b = 20, c = 30 if only judges the last expression, but the previous expression also executes if (a = 1, b = 2, c = 3) {console.log ("c = = 3");} else {console.log ("c! = 3")} / / console output: / / c! = 3console.log (a, b) / / console output: / / 1 2

In the if judgment, the last condition c = = 3 is not true, so the if judgment is false.

But the first two expressions were executed, so in the end, axiom 1 was bounded 2.

Thank you for reading! This is the end of the article on "how to use comma expressions in if in JavaScript". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Tags: Expression comma console control output two content only more condition article reference good practical code function article look knowledge example Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno Docker Shulou Tech Info macOS NVidia Xiaomi