JSFiddle - React, Tailwind, and code Playground
JavaScript
// ? Conditional Expression
burger = "Whopper";
document.writeln("Is it a Big Mac:");
document.writeln((burger=="Big Mac")?"It is a Big Mac":"It is not a Big Mac");
document.writeln("<br>");