Strings
const test = 'A string'
const test2 = 'Another string'const test = "A" + " " + "string"const test = `something`const variable = 1
const test = `a string with the number ${variable}`
const test2 = `a string with the number ${variable + 10}`const test = `a string
defined
on multiple lines`Last updated