Ad
  • Custom User Avatar

    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
    }

  • Custom User Avatar

    Can someone explain to me what the ? and the : does in the return statement.

  • Custom User Avatar

    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.