Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
Typescript
migration
byCodemod
Typescript/Use Template Literals
Last update
Jul 24, 2024
This codemod replaces string concatenations with template literals.
Before
const name = 'John';const greeting = 'Hello, ' + name + '!';
After
const name = 'John';const greeting = `Hello, ${name}!`;
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community