0
please help me to fix this code in javascript template literals
let country = readLine(); let capital = readLine(); //complete the code console.log(`Country: , Capital: `);
4 Antworten
+ 4
Jay Matthews Pls avoid giving finished code as answer, because it makes the OP skip the most important part of learning. Instead, prefer giving hints for the OP to find the solution.
+ 3
You need to complete the code. You declare the variables "country" and "capital", now you need to call them in your console.log
How do you do that?
(Hint: it's in the lesson)
+ 1
Console.log("capital country!");
0
but i can do 1 task only,