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

Lesson 6 level 2 of javascript

please provide the code of javascript
by

2 Answers

kshitijrana14
Try this one

// Please write your code here

const myConst="Studytonight";
console.log(myConst);
manujayakumar
let str1 = `Studytonight`;
let str2 = String(str1);
console.log(str1);
console.log(str2);

Login / Signup to Answer the Question.