Level 6 Lesson 2 JavaScript
let str1;
let str2;
// write code here (this is my code)
str1 = `Studytonight`;
const str2 = String(str1);
console.log(str1);
console.log(str2);
Could someone please tell me the answer of this exercise? Thank you in advance.