What will be the value of the variable result after executing the following code snippet?
let isTrue = true;
let num = 10;
let result = isTrue && num > 5;
What will be the value of the variable result after executing the following code snippet?
let isTrue = true;
let num = 10;
let result = isTrue && num > 5;