Comment mettre la variable dans String JavaScript

var myInt = 1
console.log(`my variable is ${myInt}`);
// my variable is 1
Graceful Gibbon