how i can add dynamic value in string in javascript

JavaScript
const poem = "The Wide Ocean";
const author = "Pablo Neruda";

const favePoem = `My favorite poem is ${poem} by ${author}.`;
Source

Also in JavaScript: