0 / 60 seg.

What is the result of the following code?

let a = 10;
let b = "10";
if (a == b) {
  b = a + 1;
} else {
  b = a - 1;
}
console.log(b);