if else short code example
Example 1: java shortest if else statement
(myNumber == 12) ? "true" : "false"
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';