这段程序会输出什么?

来自 Unicode 文本
Node 24 进阶 2分钟

这段程序会输出什么?

JavaScript
const value = "e\u0301💡";
console.log(value.length, [...value].length);
在试验场中打开
报告错误