Home | Mailing List | Blog | Tutorial Videos

Implicit semicolon insertion

What does this snippet of code return?

function Greetings(name) {
  return
    "Good morning, " + name
}

Greetings("Giovanni")

Select one: