//Multiline strings: console.log(`foo bar`); // foo // bar //String interpolation: var foo = 'bar'; console.log(`Let's meet at the ${foo}`); // Let's meet at the bar