What is the result of the following code?
let alpha = 5, beta = 15;
let gamma = (alpha < 10) && (beta > 10) || (alpha === 5);
console.log(gamma);
What is the result of the following code?
let alpha = 5, beta = 15;
let gamma = (alpha < 10) && (beta > 10) || (alpha === 5);
console.log(gamma);