What does this program print?

from Unicode text
Node 24 intermediate 2 min

What does this program print?

JavaScript
const value = "e\u0301💡";
console.log(value.length, [...value].length);
Open in playground
Report an error