← Back

prefer-template warning

Encourage using template literals instead of '+' operator on strings

Examples

❌  Incorrect

const greeting = 'Hello, ' + this.name;

✅  Correct

const greeting = `Hello, ${this.name}`;