Inside of _.template() is where you add your code complete with the variables(sounds a lot like ejs).
let compiled_template = _.template("<b><%-student %> </b>")({student:"xxxx"});
const here= document.getElementById("here");
here.innerHTML = compiled_template;