0 / 60 seg.

What is the result of the following code?

let m = 5, n = 10, o = 15;
if (m < n && n < o) {
  o = m + n;
}
console.log(o);