What value is obtained when executing the following code?
let a = 10, b = 20;
let result = a > 5 && b < 30 ? "true" : "false";
console.log(result);
What value is obtained when executing the following code?
let a = 10, b = 20;
let result = a > 5 && b < 30 ? "true" : "false";
console.log(result);