mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
506 B
506 B
date | id | title |
---|---|---|
2020-11-12 | 5ec1f0af-b176-4c10-8490-d732f369ee45 | JavaScript Template Literals |
Description
Template literals1 can span lines and also embed other values. ${} in a template literal will be computed and converted to a string.
Syntax
console.log(`This is a
backtick quotes string`)
console.log(`half of 100 is ${100 / 2}`)