Answers for "nested ternary operator javascript"

50

js ternary

condition ? ifTrue : ifFalse
Posted by: Guest on April-10-2020
3

nested ternary operator javascript

function example(…) {
    return condition1 ? value1
         : condition2 ? value2
         : condition3 ? value3
         : value4;
}

// Equivalent to:

function example(…) {
    if (condition1) { return value1; }
    else if (condition2) { return value2; }
    else if (condition3) { return value3; }
    else { return value4; }
}
Posted by: Guest on April-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language