One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| //This gist is a fast reference to ES06 to whose already knows es05. | |
| //I'm trying to use a different approach: first the example and after the explanation. | |
| //Lesson 1: Template literals | |
| console.log(`hello ${firstname}, | |
| how are you?`); | |
| //Template literals are string literals with support for interpolation(using ${variable}) and multiple lines. |