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

Level 2 Lesson 3 Javascript

var bestApp = 'studytonight';
let intrest = 'I love coding';
let num = 007;
let var1 = 100;
console.log(bestApp);
console.log(intrest);
console.log(num);
console.log(var1);
Even though it is printing all the variable values in the console it is throwing below error
Print all the values in the console
by

1 Answer

kshitijrana14
Try this one:

var bestApp = 'studytonight';
let _code = 'I love coding';
let num = 007;
let $123 = 100;


console.log(bestApp);
console.log(_code);
console.log(num);
console.log($123);

Login / Signup to Answer the Question.