What is the result of the following code?
let v = 5, w = 10;
if (v < w && v * w == 50 || v / w == 0.5) {
w = v;
}
console.log(w);
What is the result of the following code?
let v = 5, w = 10;
if (v < w && v * w == 50 || v / w == 0.5) {
w = v;
}
console.log(w);