Strings and Template Literals
Recreate the
descriptionvariable from the last assignment, this time using the template literal syntax.
const description = `${country} is in ${continent}, and its ${population} million people speak ${language}`;
Recreate the description variable from the last assignment, this time using the template literal syntax.