AI

Objects group related data together. Use dot notation to access properties.

Your Task:

  • Create a user object with name, age, email, and isActive (set to true)
  • Create a variable welcomeMessage using the user's name: "Welcome back, " + user.name + "!"
TypeScript Solution
Loading...

Submit your code to see test results