Level 8 > lesson 8
Unable to run getting below error , can you please look into this.
it is redirecting on home page and getting one popup
/ Add global variable a here*/
let a = "Hello";
function greeting() {
/* Add the local variable here/
let b = "Studytonight";
console.log(`${a} ${b}`);
}
greeting();
console.log(a + b);