a ? b : b ? c : d // Eg function scale (x) { return (x > 0) ? "positive" : (x < 0) ? "negative" : true }; scale(3) //"positive"