0
JS
Hi I need some help- I wrote the code as it was taught on the website, but there are 3 case errors Code: let name = readLine(); //your code goes here console.log("Welcome, " + "Tom" + "!");
2 odpowiedzi
+ 3
You have 1 case answered, the case of Tom.
What does your input line do? Where do you use it?
(Hint: put the name of your input into your print statement, instead of an actual name)
0
let name = readLine();
let x = "Welcome, ";
let z ="!";
console.log(x+`${name}`+z);