I am studying Ternary operators right now and I understand most of it but want to see if this is possible.
normal ternary : (condition) ? (result true): (result false);
question is how to write one with just a true part no false;
(condition) ? (result true):; or (condition) ? (result true); or Not possible