What value is obtained when executing the following code?
let z = 5;
if (z > 10) {
z++;
} else {
z--;
}
console.log(z);
What value is obtained when executing the following code?
let z = 5;
if (z > 10) {
z++;
} else {
z--;
}
console.log(z);