how to put dynamic value in side the string in javascritp code example
Example: how i can add dynamic value in string in javascript
const poem = "The Wide Ocean";
const author = "Pablo Neruda";
const favePoem = `My favorite poem is ${poem} by ${author}.`;