Signup/Sign In
user profile picture

Koya Durga Prasad

durgaprasadnnb8y

Joined 2 years ago

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Thank you
2 years ago
/* 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
2 years ago
Not working
2 years ago