const age = 18; //condition ? whenTrue : whenFalse const drink = (age >= 21) ? "beer" : "juice"; console.log(drink) //juice