What is the result of the following code?
let e = 5, f = 10;
if (e * f == 50 && e + f == 15 || e - f == -5) {
f = e * 3;
}
console.log(f);
What is the result of the following code?
let e = 5, f = 10;
if (e * f == 50 && e + f == 15 || e - f == -5) {
f = e * 3;
}
console.log(f);