What does this program print?

from Data types
Node 24 beginner 2 min

What does this program print?

JavaScript
const raw = "0";
console.log(JSON.stringify([
  Boolean(raw),
  Number(raw),
  raw || "fallback",
  raw ?? "fallback",
]));
Open in playground
Report an error