“TypeScript IF оператор” Ответ

TypeScript, если тогда сокращается

const x = true;
var result = x === true ? "passed" : "failed";

//Explanation
//var 1.result = 2.x 3.=== 4.true 5.? 6."passed" 7.: 8."failed";
//1.result
//2.left side of if statement
//3.if statement operator
//4.right side of if statement
//5.shorthand then operator
//6.if true the result will be "passed"
//7.shorthand else operator
//8.if false the result will be "failed"
ChernobylBob

Если Shorthand TypeScript

const answer = x > 10 ? "greater than 10" : "less than 10";
Helpless Hamster

TypeScript IF оператор

let colour: string = "Blue";

// 	if (condition){
// 		code inside will run if the condition returns true
//  }

if (colour == "Blue"){
    console.log("Blue");
}
else if (colour == "Green"){
    console.log("Green");
}
else {
    console.log("red");
}
ST111

Ответы похожие на “TypeScript IF оператор”

Вопросы похожие на “TypeScript IF оператор”

Больше похожих ответов на “TypeScript IF оператор” по TypeScript

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

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