// (condition) ? true : false; // or // condition ? true : false; var x = 15; (x === 12) ? alert("Is 12") : alert("isn't 12");