Definition: 

"Strings are a data type used to represent text and are wrapped in either a single or double quotes."

"A list of characters surrounded by quotes, used to represent text in computer programs."

"Strings in JavaScript (as in most programming languages) are just sequences of characters, which can include letters, numbers, punctuation, and spaces. We put strings between quotes so JavaScript knows where they start and end."

Example

Best Practice

Error 

Turn Any Data Type Into a String

typeof 24; // 'number' 
typeof '24'; // 'string'
typeof true; // 'boolean'
typeof 'true'; // 'string'

Single or Double Quotes Within Strings

Looking Ahead - Future Lessons