shorthand if statement code example
Example 1: 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;
}
Example 2: if and else shorthand
//Long version
let points = 70;
let result;
if(marks >= 50){
result = 'Pass';
}else{
result = 'Fail';
}
//Shorthand
let points = 70;
let result = marks >= 50 ? 'Pass' : 'Fail';