ES6-Template Literal and multi-line strings
Template literals are yet another major convenience when working with strings.
JavaScript
/* Template Literals */
var first = "mano";
var last = "anto";
var greeting = `Hello ${first} ${last} welcome`;
console.log(greeting)
/* Multi-Line strings */
var multiline = `This string sort of,
actually is a multi-line string,
thanks to JavaScript ES6`;