文字列化する値
value to stringify
Optional replacer: null | (string | number)[]置換関数 or 許可するキー名の配列
replace function or array of allowed key names
Optional space: string | numberJSON.stringifyのspace
space of JSON.stringify
// print: {"name":"haruhi","num":"8"}
stringify({ name: 'haruhi', num: BigInt(8) })
Optional replacer: ((key, value) => any)Optional space: string | number
なにかを文字列化する(bigint supported JSON.stringify) String something (bigint supported JSON.stringify)