I know in PHP we can do something like this:
$hello = \"foo\"; $my_string = \"I pity the $hello\";
Output: \"I pity the foo\"<
\"I pity the foo\"
var hello = "foo";
var my_string ="I pity the";
console.log(my_string, hello)