jashkenas--coffeescript/documentation/js/expressions.js

5 lines
181 B
JavaScript
Raw Normal View History

2010-07-29 00:51:35 -04:00
var eldest, grade;
grade = function(student) {
return student.excellentWork ? "A+" : student.okayStuff ? student.triedHard ? "B" : "B-" : "C";
2010-07-29 00:51:35 -04:00
};
eldest = 24 > 21 ? "Liz" : "Ike";