Signup/Sign In
user profile picture

Divya Subhash Lonari

divyalonari

Joined 3 months ago

Answers

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

let x = "STUDYTONIGHT";

// code here
console.log(x[1]+x[7]+x[11]);
3 days ago
let i = 0;
do
{
console.log("--" + i + "--");
i += 5;
}
while(i<=50);
3 weeks ago