I don’t know the exact answer off the top of my head - but one trick I use when looking for a model code sample if I already know a fragment of what I’m trying to do is to search GitHub.
The backticks are a (kind of) new syntax called template literals; pretty much is a different way to write strings with expressions and interpolation.
It’s in my opinion a cleaner and easier way to write strings; something like:
var a = 5;
var b = 10;
// usual way to write strings with variables
var s = a + ' plus ' + b + ' is equal to ' + (a + b);
// with template literals
var t = `${a} plus ${b} is euqal to ${a + b}`;