Quick Practice

Trace the Value

Mental execution and state tracking.

Trace the Value1/5scoreboardScore0boltStreak0easy

OR with a zero

A limit defaults through a logical OR.

Predict the output or final value before the code runs.

codelimit.js
const limit = 0 || 10;
console.log(limit);