Slide 47
Slide 47 text
function whichSeatShouldITake(){
var seats = [ ‘Front Left’, ‘Front Right’,
‘Back Left’, ‘Back Right’,
‘Back Middle’],
random = Math.round(Math.random()*seats.length));
return “Just sit in the ” + seats[random]
+ “ seat and shut up”;
}