Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyJavaScriptlet const var and scopeSingle-choice MCQ1,634 views

What will be the output?

let x = 0; if (++x === 1) { console.log(x); }