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

Lesson 3 level5

let i = 0;
const str = "studytonight";
// write your code here
while(i < str.length)
{
console.log(str[i] + "");
i++;

}


compiler says that your output doesn't match the expected outcome.
by

1 Answer

iamabhishek
Hi Shivani, there was an issue with the application. We have fixed it now. I think it will work now, please check once.

Login / Signup to Answer the Question.