What does this program print?

from JSON
Node 24 beginner 2 min

What does this program print?

JavaScript
const value = {
  missing: undefined,
  score: NaN,
  samples: [undefined, Infinity],
};

console.log(JSON.stringify(value));
Open in playground
Report an error