/* 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);
when i click on submit it showing:
*We cannot see anything in the Output panel. Did you Run/Execute the code?*
please help me