Why use back tick with ${ in const in typescript

Viewed 18272

I am going through the angular turorial and I see the below

https://angular.io/tutorial/toh-pt6

const url = `${this.heroesUrl}/${hero.id}`;

Can someone explain why I need to use ` before ${ ? Since this is typescript and similar to javascript can I not use

 this.heroesUrl + "/" + hero.id 

Why do I need to use back tick and the ${ operation?

2 Answers
Related