es6 string code example
Example 1: javascript string interpolation
var animal = "cow";
var str=`The ${animal} jumped over the moon`; // string interpolation
Example 2: ${ js
`string text`
`string text line 1
string text line 2`
`string text ${expression} string text`
tag `string text ${expression} string text`
Example 3: how to build a string javascript es6
var name = "John" ;
var age = 32 ;
console.log(`My name is ${name}, and I'm ${age} years old.`)
//displays : My name is John, and I'm 32 years old.