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

Level 2 Lesson 5...null and undefined

I have no idea what to do.
More about undefined and null...
by

1 Answer

kshitijrana14
Try this one

var myVar;
console.log(myVar);

var myVar=null;
console.log(myVar);

Login / Signup to Answer the Question.