Parsing means converting a JSON string into a usable JavaScript object using JSON.parse().
You can also turn an object back into a JSON string with JSON.stringify().
JSON.stringify(obj, null, 2) for pretty-printing with indentation.
JSON.parse() converts a JSON string into a JS object.JSON.stringify() turns a JS object back into a JSON string.