0 / 60 seg.

What value is obtained when executing the following code?

let result = false;
if (5 > 3) {
  result = true;
}
console.log(result);