Ad

Use template literals to return a hello and the argument passed to the function

Code
Diff
  • helloWorld = n =>`Hello ${n}`
    • helloWorld=n=>'Hello '+n
    • helloWorld = n =>`Hello ${n}`