JavaScript Template Literal vs. Concatination
Grave accents `…`
make template literals possible, as demonstrated below, where strings can be separated into multiple lines. And where ${a+b};
replaces " + (a+b) + ";
.
Sum of values: 6;
Multiplication of values: 8
Sum of values: 6; Multiplication of values: 8