Thanks for the response. I thought about that too. What if Javascript could parse the variable after the dollar in a template string only if a variable of that name exists?
const name = "Ethan";
console.log(`Hello $name`); // Hello Ethan
console.log(`Hello $name`); // Hello $name
I think a very small number of people would have put a dollar in front of a word. But thanks :)