0 / 60 seg.

What will be the value of result in the following code?

var score = 85;
var result = score >= 90 ? "A" : score >= 80 ? "B" : "C";