What value is printed when executing the following code?
let total = 1;
for (let i = 2; i < 4; i++) {
total *= i;
}
console.log(total);
What value is printed when executing the following code?
let total = 1;
for (let i = 2; i < 4; i++) {
total *= i;
}
console.log(total);