java shortest if else statement
(myNumber == 12) ? "true" : "false"
java shortest if else statement
(myNumber == 12) ? "true" : "false"
short if
condition ? doThisIfTrue : doThisIfFalse
1 > 2 ? console.log(true) : console.log(false)
// returns false
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");
short for if
#include <iostream>
//Another variation:
a == 1 ? std::cout << "1" : (a == 2 ? std::cout << "2" : a = 3);
//This is the same as:
if(a == 1)
{
std::cout << "1";
}
else if (a == 2)
{
std::cout << "2";
}
else
{
a = 3;
}
c# ternary condition
condition ? consequent : alternative
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us