var Str = "_Hello_";
var newStr = Str.replaceAll("_", "<em>");
console.log(newStr);
it out puts <em>Hello<em>
I would like it to output <em>Hello</em>
but I have no idea how to get the </em>
on the outer "_", if anyone could help I would really appreciate it. New to coding and finding this particularly difficult.