stringify(jsonObj, opt_replacer)code »
Converts a JSON object to its string representation.
Parameters
- jsonObj
* The input object.
- opt_replacer
?function(string, *): *= A replacer function called for each (key, value) pair that determines how the value should be serialized. By default, this just returns the value and allows default serialization to kick in.
Returns
stringA JSON string representation of the input object.