这段程序会输出什么?

来自 JSON
Node 24 入门 2分钟

这段程序会输出什么?

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

console.log(JSON.stringify(value));
在试验场中打开
报告错误