Strings

A string is a sequence of characters. In JavaScript it will be enclosed in single or double quotes (see Nesting Quotes). A string is a value and can be assigned to variables or passed to functions.

Examples:

"Hello, everyone."
"Bob"
"1"
'Free Chili Day'
'Friday'
String Concatenation

Back to Knowledge Dump