How many times is evaluated printed, and what Boolean follows?

from Modules
Node 24 intermediate 3 min

How many times is evaluated printed, and what Boolean follows?

JavaScript
const source = `
console.log("evaluated");
export const marker = {};
`;

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

console.log(first.marker === second.marker);
Open in playground
Report an error