AI

Welcome to JavaScript! Let's start by creating variables to store data. Variables are containers for values.

Your Task:

  • Create a variable called name and set it to "Alice"
  • Create a variable called greeting using const that contains the string "Hello, " (note the space)
  • Create a variable called message that combines the greeting with the name using the + operator
  • The final message should be "Hello, Alice!"
TypeScript Solution
Loading...

Submit your code to see test results