0

If I have the following:

...
let p1 = <p>qwer</p>
let p2 = <p>asdf</p>
...

Should I put semicolons at the end of each of these?

Joe C.
  • 397
  • 4
  • 15

1 Answers1

0

It is not wrong to leave it like that, you can put semicolons if you want, but it is better you be consistent and follow one code style check https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode it will make your life easier

mssp
  • 16
  • 5