Page 1 of 1

JSON

Posted: Wed Feb 06, 2013 3:52 pm
by srachit
Can someone please explain to me what exactly is JSON?

In simple English preferably :P

Re: JSON

Posted: Wed Feb 06, 2013 8:03 pm
by hallsofvallhalla
Just a way of passing data. It turns data into objects for better transfer and reading.

I seldom use it.

Re: JSON

Posted: Wed Feb 06, 2013 8:52 pm
by Jackolantern
It is like a simplified alternative to XML. People really started to hate XML in the early 2000's as it became more popular, and JSON was finally offered as a substitute. It stands for Javascript Object Notation. It is special because data in JSON format is nearly directly readable by Javascript engines. This makes it ideal to pass around data, since JS can be basically anywhere, from mobile devices, to web servers, to browsers (of course).

I actually use JSON all the time for data transmission, and I only use anything else if I must :cool:

Re: JSON

Posted: Thu Feb 07, 2013 6:29 am
by Elvar
JSON is so great, that you should try out Mongodb! :D

Re: JSON

Posted: Thu Feb 07, 2013 11:12 am
by srachit
hallsofvallhalla wrote: I seldom use it.
Any reason for this?