Apologize if it’s seems simple, I’m stack on this. I want to convert these if statements into ternary condition :
JavaScript
x
5
1
if a!='-' && b!='_'
2
action A
3
else
4
if a=='-' action B else action C
5
I tried this and do not work for me, it only execute directly condition C
JavaScript
1
2
1
a!='-' && b!='_' ? Action A : (a=='-' ? Action B : Action C)
2
How to formulate that ? thanks.
Advertisement
Answer
Though with some magic letters it works. But please DON’T do it.
Nested terenary operations are harder to read and makes your Juniors cry. Don’t do it.
If you still want to do
JavaScript
1
2
1
(a!='-' && b!='_') ? Action A : (a=='-' ? Action B : Action C)
2
Example
JavaScript
1
5
1
var a =1;
2
var b=1;
3
var c= 2;
4
5
(a==1 && b==1) ? alert("AB: true") : ((c != 1) ? alert("C: true") : alert("false"))
Example 2 :
JavaScript
1
5
1
var a =1;
2
var b=1;
3
var c= 2;
4
5
(a==1 && b==2) ? alert("AB: true") : ((c != 1) ? alert("C: true") : alert("false"))