condition ? expression-if-true : expression-if-false; function findGreater(a, b) { return a > b ? "a is greater" : "b is greater"; }