I want to use Javascript object as a key in the hashmap. In order to do this, I have to convert this Javascript object into the string. There also has to be a way to decode the object back from this string.
What is the best way of doing this?
So far I have found two ways of converting it. Using JQuery Params method and JSON.stringify.
Thanks.