Typescript
migration
bycodemod.com

Typescript/Use Template Literals

/icons/badge-info.svg

Made for

Typescript

/icons/calendar.svg

Last update

Apr 23, 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

background illustrationGet Started Now