Example of allowed template string: ``` const x = 'world'; const message = `Hello ${x}`; ``` Example of disallowed template string: ``` const x = 'world'; const message = `Hello world`; ```
Example of allowed template string:
Example of disallowed template string: