String Syntax
Strings are for storing text
Strings are written with quotes
Strings created with single or double quotes work the same. There is no difference between the two.
Template Strings
Templates were introduced with ES6 (JavaScript 2016). Templates are strings enclosed in backticks (`This is a template string`). Templates allow single and double quotes inside a string:


