Reply to 939446167083077633
Use very restrictive code like:
const templateString = 'abc${val}def' // could come from a database ... const val = 'f00'; console.log(templateString.replace(/${val}/g, val))
which replaces the exact instace of the placeholder, nothing else.
Response: 939446886058119168