I've a string value in the format '{"apple":30,"orange":50}'. How can I convert it into a javascript object of format
{apple: 30, orange: 50}
So that I can get the value for apple by using object.apple.
|
I've a string value in the format
So that I can get the value for |
||||
|
|
You can solve this by many methods but I prefer to use a library like the JSON library from Mr. Douglas Crockford. If you use the library it is as simple as
The most dangerous and ugly way is to use the
Never use this. The json.org site has references to more json libraries in different languages. Javascript specific information can be found here. |
|||||||||||
|
|
|||
|
|