Javascript Study > ES6 > Flashcards
How to concatenate variable value without use + (plus operator) and String.Concat() method ?
let myVar = "This is:"; let thing = "Amazing!";
console.log(´${myVar} ${thing }´);
//prints This is Amazing!