I created a string let clientName = ""
Then I have an input question clientName = input.question ("What is your name? ")
The answer to the input question will change. How do I get the answer to fill the empty string?
I created a string let clientName = ""
Then I have an input question clientName = input.question ("What is your name? ")
The answer to the input question will change. How do I get the answer to fill the empty string?
Do you mean prompt()?
let clientName = prompt("What is your name?");
console.log(clientName)
Contact Name: ${contactName})