“JavaScript Ternary Operator” Ответ

JavaScript Ternary

condition ? doThisIfTrue : doThisIfFalse

1 > 2 ? console.log(true) : console.log(false)
// returns false
Adventurous Ant

JavaScript Ternary Operator

let showme || "if the variable showme has nothing inside show this string";
let string = condition ? 'true' : 'false'; // if condition is more than one enclose in brackets
let condition && 'show this string if condition is true';
KingUche

тройной оператор в JavaScript

let amount = 50;
let food = amount > 100 ? 'buy coka-cola' : 'buy just a water bottle';
console.log(food)
Ariful Islam Adil(Code Lover)

JavaScript JS Ternary Operater

<script>  
    function gfg() {  
     //JavaScript to illustrate 
    //Conditional operator 
  
    let PMarks = 40 
    let result = (PMarks > 39)? 
        "Pass":"Fail"; //Syntax:- (condition) ? do this if true : do this if false
  
    document.write(result); 
    }  
    gfg();  
</script>
Dangerous Dunlin

Тернарный оператор JavaScript

// ternary operator in javascript
const x = 6;
let answer = x > 10 ? "greater than 10" : "less than 10";
console.log(answer);
// output: less than 10

// nested condition
const answer = x > 10 ? "greater than 10" : x < 5 ? "less than 5" : "between 5 and 10";
console.log(answer);
// output: between 5 and 10

// Syntax
condition ? ifTrue : ifFalse
Chetan Nada

Тройные выражения в JavaScript

let memberType = 'basic';
let price = memberType === 'basic' ? 5 : 10;

In the example, the condition that is evaluated is whether memberType === 'basic'. 
If this condition is true, then price will be 5, and otherwise it will be 10. 
The equivalent long-hand conditional expression would be:

let memberType = 'basic';
let price;

if (memberType === 'basic') {
  price = 5;
} else {
  price = 10;
}
Gorgeous Goldfinch

Ответы похожие на “JavaScript Ternary Operator”

Вопросы похожие на “JavaScript Ternary Operator”

Больше похожих ответов на “JavaScript Ternary Operator” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования