🔰serializing objects
🚧 under construction
JS ⟩ value ⟩ object ⟩ serialize
convert/restore an object's state to/from a string.
JSON.stringify(value, [replacer], [space]) // value -> string
JSON.parse(text, [reviver]) // string -> value
Last updated
Was this helpful?