🚧 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
converting objects
JavaScript: The Definitive Guide ⟩
6.8 Serializing Objects
11.6 JSON Serialization & Parsing
JSON.stringify()
JSON.parse()
Last updated 1 year ago