(function(){ var grade = function(student) { if (student.excellent_work) { return "A+"; } else if (student.okay_stuff) { return "B"; } else { return "C"; } }; var eldest = 24 > 21 ? "Liz" : "Ike"; })();