AI

Modern JavaScript offers cleaner syntax. Use property shorthand and template literals.

Your Task:

  • Create a profile object using shorthand: { name, age, city }
  • Create a bio string using backticks: Hello, I'm ${profile.name} and I'm ${profile.age} years old
TypeScript Solution
Loading...

Submit your code to see test results