Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 2 Lesson 5 (I was unable to get the correct code )

var myVar
console.log(myVar);
var myVar = null;
console.log(myVar);
I have been trying this code but is not working.
Abdulhadi Yunus Aliyu
From Kaduna State.
+2347084933609
binyunus2020@gmail.com
Thank you.
Thank you
by

1 Answer

sam5epi0l
Hi, You have to initialize the variable as follows

// write your code here
let myVar;

Login / Signup to Answer the Question.