Template Literals
Problems with traditional string concatenation
Some common used problems with traditional string concatenation :
1. Poor readability
const name = 'Abhinav';
const msg = 'Hello' +name+ ', Welcome !!';
template-literals-in-js.hashnode.dev2 min read