Easy
How to Concatenate Strings Using Template Literals in JavaScript to Create a Greeting Message
Which line of code is missing to make the following script output "Hello, John!" in the console?
1let greeting = "Hello";2let name = "John";3// Missing line here4console.log(message);