Plain string as template literal (without eval) in JS
We all know that ES6 introduced template literals via which we can write a string. But there's a catch if the template is a string variable - such as when you have multilingual error messages coming from a database. Is there another way...