Skip to content

Instantly share code, notes, and snippets.

@emersonbroga
Created December 18, 2018 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emersonbroga/11409ea25d5b25915eaf4e05b30e05e2 to your computer and use it in GitHub Desktop.
Save emersonbroga/11409ea25d5b25915eaf4e05b30e05e2 to your computer and use it in GitHub Desktop.
// bad
let name = 'Emerson Broga';
let hello = 'Hello ' + name;
// good
let name = 'Emerson Broga'
let hello = `Hello ${name}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment