String literals start with " or ' and end with " or ', respectively.
It is a syntax error to omit the trailing " or ' from a string literal. A
missing terminator can happen for a number of reasons:
To fix this error, ensure a backslash (\) is not escaping the terminator,
use a template literal for multi-line strings, or just include a terminator: