DEV Community

Discussion on: When are semicolons needed in JavaScript?

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

You know it is call ASI, right? -- this SO post

Normally, I wouldn't run into something like

return
{ 
  foo: 1
}

Although, I do get things like this from Prettier. (I didn't create it myself.)

const foo =
  'very long text'