Last active
February 28, 2018 12:50
-
-
Save SaschaHeyer/141e5f6f598bd2ceed11124c247a02f2 to your computer and use it in GitHub Desktop.
templateLiterals
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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