Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
JavaScript
easy
JavaScript
let const var and scope
Single-choice MCQ
1,634 views
What will be the output?
let x = 0; if (++x === 1) { console.log(x); }