JavaScript JSON : Object
JSON Methods
Parses the specified string of JSON and converts it to an Object. If reviver is specified, it will be called for each parsed key/value pair and the function's return value is used in place of the value.
Example:
RunResults:
Converts value to a JSON string. If value has a toJSON() method on it, the return value of that method will be used.
Example:
RunResults:
Converts value to a JSON string. The replacer function is called for each key/value pair and the return value is used as the value in the final string. If indent is specified, each key/value pair will be on a new line with the indent string before the key.
Example:
RunResults:
Converts value to a JSON string. Only key/value pairs where the key is in keyNames will be in the JSON string. If indent is specified, each key/value pair will be on a new line with the indent string before the key.