What does this program print?

from Modules
Node 24 intermediate 3 min

What does this program print?

JavaScript
const source = `
export let count = 1;
export function increment() { count += 1; }
`;

const url = `data:text/javascript,${encodeURIComponent(source)}`;
const counter = await import(url);
const { count } = counter;

counter.increment();
console.log(counter.count, count);
Open in playground
Report an error