+ 1

ERROR Web development

I'm the only one having trouble with this practice; I can't find the error Code : let name = readLine(); let welcome = "Welcome,\t"; let f = "!"; console.log(welcome + name + f); // Your code goes here

28th Oct 2023, 9:35 PM
Cristo
2 odpowiedzi
+ 6
Cristo let name = readLine(); let welcome = "Welcome, "; // you don't need the \t (tab) let f = "!"; console.log(welcome + name + f); // Your code goes here
28th Oct 2023, 11:19 PM
BroFar
BroFar - avatar
+ 1
Thx BroFar
29th Oct 2023, 10:37 AM
Cristo