Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 258 Bytes

File metadata and controls

13 lines (10 loc) · 258 Bytes

Template Strings

Use these instead of string concatenation.

const legalName = `${givenName} ${familyName}`

Anything inside the curly brackets will be evaluated and cast to string.

const list = [1, 2, 3, 4]
const text = `has ${list}`