You are creating a simple web page with a personal greeting. You have two variables, `myName` that holds your name as a string, and `introduction` that holds a greeting message also as a string. Fill the blanks in the code to concatenate and print the greeting and your name together.
Introduction to JavaScript
Concatenating and printing a personal greeting
Report a typo
Fill in the gaps with the relevant elements
myName = "John Doe";
var introduction = "Hello, My name is ";
(introduction + myName); ___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.