What is the result of the following code?
let w = 10, z = 20;
if (w !== z && w + z === 30 || w * z === 200) {
z = w;
}
console.log(z);
What is the result of the following code?
let w = 10, z = 20;
if (w !== z && w + z === 30 || w * z === 200) {
z = w;
}
console.log(z);