Answers for "ternary operator in javascript"

12

javascript if shorthand

condition ? doThisIfTrue : doThisIfFalse

1 > 2 ? console.log(true) : console.log(false)
// returns false
Posted by: Guest on May-21-2020
50

js ternary

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

javascript ternary operator

//ternary operator syntax and usage:
condition ? doThisIfTrue : doThisIfFalse

//Simple example:
let num1 = 1;
let num2 = 2;
num1 < num2 ? console.log("True") : console.log("False");
// => "True"

//Reverse it with greater than ( > ):
num1 > num2 ? console.log("True") : console.log("False");
// => "False"
Posted by: Guest on February-02-2020
0

ternary operator in javascript

let amount = 50;
let food = amount > 100 ? 'buy coka-cola' : 'buy just a water bottle';
console.log(food)
Posted by: Guest on September-11-2021
0

ternary operator in javascript

// Simple (if)
condition ? true : false


// complex (else if)
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 June-03-2021
0

ternary operator in javascript

FullName: (obj.FirstName && obj.LastName) ? obj.FirstName + " " + obj.LastName : "missing values",
Posted by: Guest on January-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language