Simple types / Strings

let fontSize = 14
let fontFamily = "Arial"
let style = `font-size: ${fontSize};` +
    ` font-family: ${fontFamily}`
//style is "font-size: 14; font-family: Arial"

console.log(`style is "${style}"`)