There's a hidden function call inside every html template you write.
You use template literals every single day. The backtick string with ${} holes in it:
const name = "Vivek";
const greeting = `Hi ${name}, you have ${3} messages`;
// "Hi Vivek, you have 3 messages"
N