develop wherever and whenever you want...
Docs > JSON Class Summary

JSON Class Summary

The JSON class provides a secure mechanism to parse JSON source text and produce JSON source from runtime objects. It is represented by a single instance called JSON.

object JSON.parse(string) 
Parse given string and return the object matching the string specification. Please note that Jasic does not support the optional reviver parameter.

string JSON.stringify(object) 
Produce a JSON string representation of given object. Please note that Jasic does not support the optional replacer and space parameters.