JASON (JavaScript Object Notation) Parse and Stringify
Sending or recieving data from web servers always come in string formats. But there are ways to send entire ojects back and that is through Parse() and Stringify().
Note: When using JSON.parse(), the format MUST be in JSON format, or a syntax error will display.
JSON.strigify()
and JSON.parse()
The JSON.stringify() converts JavaScript objects into JSON text and stores that text in a string. As for JSON.parse(), this method concerts the string (JSON text) into a JavaScript object.