Hey @mildlyeastern,
That's a great question! It's referred to as a ternary. It's a one line conditional statement where the condition is followed the truthy evaluation followed by the else. So like this:
condition == true ? ifConditionWasTrue : elseIfItWasNot
aka
if (condition == true) { return ifConditionWasTrue; }else{ return elseIfItWasNot }
This comment is hidden because it contains spoiler information about the solution
I love this
Loading collection data...
Hey @mildlyeastern,
That's a great question! It's referred to as a ternary. It's a one line conditional statement where the condition is followed the truthy evaluation followed by the else. So like this:
condition == true ? ifConditionWasTrue : elseIfItWasNot
aka
if (condition == true) {
return ifConditionWasTrue;
}else{
return elseIfItWasNot
}
This comment is hidden because it contains spoiler information about the solution
I love this