0 / 60 seg.

What value is obtained when executing the following code?

let x = 5, y = 10;
if (x < y || x * 2 === y) {
  x = x + y;
}
console.log(x);