Difference between jsonstring and json objects

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

Can someone tell me the difference between a JSON string and a JSON object?

thanks

+4
source share
1 answer

A Json object is an object that is parsed from the server. Then you need to evaluate the object in order to convert it to a string, which can then be manipulated to obtain the required information.

+1
source

Source: https://habr.com/ru/post/1380534/


All Articles