这段程序会输出什么?

来自 函数
Node 24 入门 2分钟

这段程序会输出什么?

JavaScript
function read(value = 'fallback') {
  return String(value);
}

console.log([
  read(),
  read(undefined),
  read(null),
  read(''),
].join('|'));
在试验场中打开
报告错误