Template literals are literals delimited with backtick (`) characters, allowing for multi-line strings, string interpolation with embedded expressions, and special constructs called tagged templates.
(c) MDN
🐊Putout plugin adds ability to remove useless template expressions
.
npm i @putout/plugin-remove-useless-template-expressions -D
{
"rules": {
"remove-useless-template-expressions": "on"
}
}
const y = `${'hello'} + ${'world'}`;
const y = `hello + world`;
MIT