JavaScript String Questions Answers
JavaScript String Questions Answers
Q: What are the differences between single quotes, double quotes, and backticks for strings?
A: Single and double quotes are similar, but backticks (``) support template literals, allowing
interpolation like `${var}` and multi-line strings.