The JavaScript error "unterminated string literal" occurs when there is an unterminated string literal somewhere. String literals must be enclosed by single ('
) or double ("
) quotes.
The JavaScript error "unterminated string literal" occurs when there is an unterminated string literal somewhere. String literals must be enclosed by single ('
) or double ("
) quotes.
SyntaxError: Unterminated string constant (Edge) SyntaxError: unterminated string literal (Firefox)
There is an unterminated string literal somewhere. String literals must be enclosed by single ('
) or double ("
) quotes. JavaScript makes no distinction between single-quoted strings and double-quoted strings. Escape sequences work in strings created with either single or double quotes. To fix this error, check if:
You can't split a string across multiple lines like this in JavaScript:
const longString = "This is a very long string which needs to wrap across multiple lines because otherwise my code is unreadable."; // SyntaxError: unterminated string literal
Instead, use the + operator, a backslash, or template literals. The +
operator variant looks like this:
const longString = "This is a very long string which needs " + "to wrap across multiple lines because " + "otherwise my code is unreadable.";
Or you can use the backslash character ("\") at the end of each line to indicate that the string will continue on the next line. Make sure there is no space or any other character after the backslash (except for a line break), or as an indent; otherwise it will not work. That form looks like this:
const longString = "This is a very long string which needs \ to wrap across multiple lines because \ otherwise my code is unreadable.";
Another possibility is to use template literals.
const longString = `This is a very long string which needs to wrap across multiple lines because otherwise my code is unreadable.`;
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Unterminated_string_literal