I know in PHP we can do something like this :
$hello = "foo";
$my_string = "I pity the $hello";
output : "I pity the foo"
I was wondering if this same thing is possible in JavaScript as well. Using variables inside strings without using concatenation -- it looks more concise and elegant to write.