0 / 60 seg.

What is the result of the following code?

let p = 10, q = 5, r = 0;
let s = (p > q) && (r < p) || (r === 0);
console.log(s);