This object implements ECMAScript JSON functions. One instance of the object is automatically created in the global namespace when the script engine is initialized. That instance is accessible via Global::JSON. Additional instances of the object cannot be created. See the ECMA script specification for more information.
Object : parse( String text, Function reviver=undefined )
Parses a JSON formatted String and converts it to an ECMAScript Object.
Parameter(s):
undefined
then the property is deleted from the result.Return Value:
text
input.String : stringify( Object value, Object replacer=undefined, Object space=undefined )
Converts an ECMAScript Object into a JSON formatted String.
Parameter(s):
Return Value:
value
input.