这段程序的第二行会输出什么?
JavaScript
function escapeHtmlText(value) {
return value.replace(/[&<>]/g, (character) => ({
'&': '&', '<': '<', '>': '>',
})[character]);
}
const name = '<b>Ada & Lin</b>';
console.log(name);
console.log(escapeHtmlText(name));