Syntax Lookup

Enter some language construct you want to know more about.
This is the string interpolation syntax.

A string interpolation is composed of two backticks. It allows Unicode characters and embeddable values and expressions with the ${myValue} syntax.

Example

ReScriptJS Output
let language = "ReScript"

let exclamation = `${language} is pretty cool.
Right?
šŸŽ‰
`

References