deserializeJsonString() : Creates deserialized object from a JSON string created from a serialized object - OrvilleChomer/orvObjLib GitHub Wiki

Not to be confused with the parse() method. Though the parse method does use this method!

Takes the JSON string created from a serialized object and creates a deserialized object.

A deserialized object will have an output property. This property will contain an exact copy of the original object.

var orvObjLib = new OrvObjLib();
var deserializedObj = orvObjLib.deserializeJsonString(sJSON);

Back to API List