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