JS
challenger
Home
JavaScript Basics
variables
Time to Uncomment
Time to Uncomment
This time, the variable declaration is hidden behind an inline comment. Fix the code so it prints the value of
x
.
reset
const // x = 100;
console.log(x); // expected output: 100
JavaScript
Run Code
Console