JSON.stringify() <-> JSON.parse()
JSON.stringify(obj) - Takes any serializable object and returns the JSON representation as a string.
JSON.stringify() -> Object To String.
JSON.parse(string) - Takes a well formed JSON string and returns the corresponding JavaScript object.
JSON.parse() -> String To Object.
Explanation: JSON.stringify(obj [, replacer [, space]]);
Replacer/Space - optional or takes integer value or you can call interger type return function.
function replacer(key, value) {
if (typeof value === 'number' && !isFinite(value)) {
return String(value);
}
return value;
}