Strings MUST use single quotes.
Template literals SHOULD be used for string interpolation and multi-line strings.
Example (Correct):
const name = 'John'
const greeting = `Hello, ${name}!`
const multiLine = `
This is a
multi-line string
`
Example (Incorrect):
const name = "John"