7

Possible Duplicate:
What is the difference between JSON and Object Literal Notation?

Can anyone tell me the difference between JSON string and JSON object?

Thanks

Community
  • 1
  • 1
Rose
  • 195
  • 2
  • 3
  • 8
  • 2
    http://stackoverflow.com/questions/2904131/what-is-the-difference-between-json-and-object-literal-notation – Riz Nov 10 '11 at 09:08

1 Answers1

1

A Json Object is an object as parsed from a server. You then need to evaluate the Object to convert it into a String which you can then manipulate to retrieve the requited information.

  • Thanks Dev and Kevin.Here is the sample Jsons
    `{"id":1,"method":"myMessage","params":["{\"user\":\"Test\",\"message\":\"This is Cool\"}"]}`
    – Rose Nov 10 '11 at 12:16