Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
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
}
Can someone explain to me what the ? and the : does in the return statement.
8 months after you commented this and is still helping newbies like me. Thank you for sharing the little things that will make all become better coders.