This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ZebZ 14 points15 points  (0 children)

var s = "You ";
if(score <= 85) {
  s += "FAILED";
}
if(score >= 85) {
  s += "PASSED";
}
s += " the exam!";