:? conditional operator code example
Example 1: c# ternary
// ---------------- Syntax of Ternary Operators ----------------- //
string stateOfMatter;
int temperature = 23;
// ---- For just one condition ---- //
stateOfMatter = temperature < 0 ? "Solid": "Liquid";
// If temperature is below zero, then stateOfMatter is solid, otherwise
// it will be liquid
// ---- For more conditions ---- //
stateOfMatter = temperature < 0 ? "Solid" : (temperature > 100 ? "Gas" : "Liquid");
Example 2: conditional operator
var age = 26;
var beverage = (age >= 21) ? "Beer" : "Juice";
console.log(beverage); // "Beer"