Guest User

Untitled

a guest
Dec 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // bad
  2.  
  3. let name = 'Emerson Broga';
  4. let hello = 'Hello ' + name;
  5.  
  6. // good
  7.  
  8. let name = 'Emerson Broga'
  9. let hello = `Hello ${name}`;
Add Comment
Please, Sign In to add comment