admin管理员组文章数量:1347931
My aim is "to execute the code when only a, b, and c are equal". I figured out two codes:
Code#1:
if (a===b===c) {console.log('something')};
code#2:
if ( (a===b)&&(a===c)&&(b===c) ) {console.log('something')};
I have tried both and realized that only "code#2" is able to respond my purpose (execute only when 3 variables are equivalent (eg. a=b=c
),
But for "code#1", it executes whenever there are 2 equivalent variables (eg. a=b
or b=c
..)
MY QUESTION IS: "what is the difference between code#1 and code#2?"
My aim is "to execute the code when only a, b, and c are equal". I figured out two codes:
Code#1:
if (a===b===c) {console.log('something')};
code#2:
if ( (a===b)&&(a===c)&&(b===c) ) {console.log('something')};
I have tried both and realized that only "code#2" is able to respond my purpose (execute only when 3 variables are equivalent (eg. a=b=c
),
But for "code#1", it executes whenever there are 2 equivalent variables (eg. a=b
or b=c
..)
MY QUESTION IS: "what is the difference between code#1 and code#2?"
Share Improve this question edited Feb 16, 2015 at 15:24 Sithideth Bouasavanh asked Feb 16, 2015 at 14:27 Sithideth BouasavanhSithideth Bouasavanh 1,0611 gold badge12 silver badges21 bronze badges 8-
6
What's with the
c
flag? – Tim Čas Commented Feb 16, 2015 at 14:28 - 14 I'm pretty sure this doesn't mean what you think it means. look up the difference between "=" and "==". Then, in Javascript, "===" will bee important. – Almo Commented Feb 16, 2015 at 14:28
-
3
code #2 has a redundant parison: just check
if a == b && b == c
is enough – Fabrizio Calderan Commented Feb 16, 2015 at 14:33 -
2
@Almo: And even for
a==b==c
, that still won't mean what he (probably) thinks it means. – Tim Čas Commented Feb 16, 2015 at 14:34 - 2 I'm voting to close this question as off-topic because the author doesn't understand what he's asking. The only "correct" answer answers the actual question, but not what I think is the intent of the question. – Almo Commented Feb 16, 2015 at 14:36
3 Answers
Reset to default 8The question you're actually asking is whether these two are the same:
if (a === b === c) {...}
if ((a === b) && (b === c) && (a === c)) {...}
Shortly, they're not. The first can be summarized as:
if ((a === b) === c) {...}
Which, if a and b are equal, evaluates to
if (true === c) {...}
Which is not the same as checking if all three are equal.
To check three-ways equality, you will have to manually check all sides:
if ((a === b) && (b === c)) {...}
I will try to explain the difference. Explain of first code example:
if (a=b=c) {console.log('something')};
// Code above means: if (c) {console.log('something')};
// So if Boolean(c) is false, console.log will not work
Explain of second example:
if ( (a=b)&&(a=c)&&(b=c) ) {console.log('something')};
// Code above means: if (b && c && c) {console.log('something')};
// So if Boolean(c) or Boolean(b) is false, console.log will not work
An assignment operator assigns a value to its left operand based on the value of its right operand and return the value of its right operand.
Time for a truth table... The final two columns are the expressions you're paring
A | B | C | A == B | (A == B) == C | A == B && B == C
--------+-------+-------+-----------+---------------+-----------------
TRUE | TRUE | TRUE | TRUE | TRUE | TRUE
TRUE | TRUE | FALSE | TRUE | FALSE | FALSE
TRUE | FALSE | TRUE | FALSE | FALSE | FALSE
TRUE | FALSE | FALSE | FALSE | TRUE | FALSE
FALSE | TRUE | TRUE | FALSE | FALSE | FALSE
FALSE | TRUE | FALSE | FALSE | TRUE | FALSE
FALSE | FALSE | TRUE | TRUE | TRUE | FALSE
FALSE | FALSE | FALSE | TRUE | FALSE | TRUE
Nope! They're not the same.
本文标签:
版权声明:本文标题:javascript - in JS, are (a===b===c) and ( (a===b)&&(a===c)&&(b===c) ) the same? sorry for my ign 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743841984a2548443.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论