Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 162 Bytes

File metadata and controls

18 lines (14 loc) · 162 Bytes

Template Literals

let name = "Rapha";

constr greetings = 
`
Hello ${name}!
 How are you?
`

Output

Hello Rapha!
  How are you?