

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
const light = 'red';
if (light === 'green') {
console.log('Go');
} else {
console.log('Stop');
}

Trace the program the way the computer would, then make your call before running anything.
const light = 'red';
if (light === 'green') {
console.log('Go');
} else {
console.log('Stop');
}