JS
challenger
Home
JavaScript Basics
variables
Create the missing variable
Create the missing variable
Below, we attempt to assign the value of a variable named
numOne
to the variable
numTwo
. But, that variable has not been declared yet. Declare a variable named
numOne
and run the code.
reset
let numTwo = numOne; console.log(numTwo);
JavaScript
Run Code
Console