Template literals (Template strings) Js
Template literals are enclosed by the backtick (` `) (grave accent) character instead of double or single quotes // Untagged, these create strings: `string text` `string text line 1 `string text ${expression} string text`