Created
July 30, 2018 22:27
-
-
Save gladchinda/0442b86ad9ae8c7f7f339a65cf860a5c to your computer and use it in GitHub Desktop.
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
| const html = (` | |
| <html> | |
| <body> | |
| <div>Template literals are super cool.</div> | |
| </body> | |
| </html> | |
| `).trim(); | |
| console.log(html); | |
| // <html> | |
| // <body> | |
| // <div>Template literals are super cool.</div> | |
| // </body> | |
| // </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment