What does this program print on its second line?
JavaScript
function escapeHtmlText(value) {
return value.replace(/[&<>]/g, (character) => ({
'&': '&', '<': '<', '>': '>',
})[character]);
}
const name = '<b>Ada & Lin</b>';
console.log(name);
console.log(escapeHtmlText(name));