The following example returns 0:
console.log(0 && 0 === 0);
The following example returns true:
console.log(2 && 2 === 2);
The following example returns 0:
console.log(0 && 0 === 0);
The following example returns true:
console.log(2 && 2 === 2);