This option controls whether conditional (ternary) expressions should be preferred over if/else statements when assigning values to the same variable.
var value = condition
? trueValue
: falseValue;string value;
if (condition) {
value = trueValue;
} else {
value = falseValue;
}