Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Last active February 28, 2018 12:50
Show Gist options
  • Select an option

  • Save SaschaHeyer/141e5f6f598bd2ceed11124c247a02f2 to your computer and use it in GitHub Desktop.

Select an option

Save SaschaHeyer/141e5f6f598bd2ceed11124c247a02f2 to your computer and use it in GitHub Desktop.
templateLiterals
let beerName = 'Bitburger';
let beerPrice = 1.50;
console.log(`The ${beerName} cost ${beerPrice}`);
// output: The Bitburger cost 1.5
let beers = `Bitburger
Bolten
Heineken
`;
console.log(beers);
// output: Bitburger
// output: Bolten
// output: Heineken
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment