In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
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!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.