json-stringify()
Last updated
Was this helpful?
Last updated
Was this helpful?
Serializes a JSON () object or an atomic value (string, number, boolean) into JSON text.
The compact (unpretty) form (default) is useful for logging as it contains no line breaks.
json
: A JSON object/array or atomic value
pretty
: A boolean indicating compact or pretty formatting
json-stringify(true())
→ true
json-stringify(42)
→ 42
json-stringify("foo")
→ "foo"
json-stringify($data)
→ {"foo":"bar"}
json-stringify($data, true())
→
json-stringify(json-parse('[1, 2]'))
→ [1, 2]