Quotes

Verze:

31. 12. 2025

Zodpovědná osoba:

Dominik Šlechta

Strings MUST use single quotes. Template literals SHOULD be used for string interpolation and multi-line strings.

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"