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