fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,30 @@
---
title: Template Literals
---
Template Literals are an ES6 feature utilizing the backtick charater to define a string value
### The basic syntax
Below is a basic example of an template literal:
```javascript
// ES5 syntax
var es5String = "ES5 String"
var es5StringWithVariable = "ES5 String with a " + variable + "..."
// ES6 template literal
const tempLit = `Simple string`
// ES6 template literal with variable
let tempLitWithVariables = `Simple string with a ${variable}...`
// ES6 multiple line template literal
const multiLineString = `
Multiple
Lines
Allowed
`
```