ps
var foo = 'bar';
console.log(`Let's meet at the ${foo}`);
// Let's meet at the bar
Scary Seahorse
var foo = 'bar';
console.log(`Let's meet at the ${foo}`);
// Let's meet at the bar