JSON

For discussions about game development that does not fit in any of the other topics.
Post Reply
User avatar
srachit
Posts: 291
Joined: Sat Jan 05, 2013 6:10 pm

JSON

Post by srachit »

Can someone please explain to me what exactly is JSON?

In simple English preferably :P
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: JSON

Post by hallsofvallhalla »

Just a way of passing data. It turns data into objects for better transfer and reading.

I seldom use it.
User avatar
Jackolantern
Posts: 10891
Joined: Wed Jul 01, 2009 11:00 pm

Re: JSON

Post 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:
The indelible lord of tl;dr
User avatar
Elvar
Posts: 86
Joined: Sun Oct 07, 2012 7:04 pm

Re: JSON

Post by Elvar »

JSON is so great, that you should try out Mongodb! :D
User avatar
srachit
Posts: 291
Joined: Sat Jan 05, 2013 6:10 pm

Re: JSON

Post by srachit »

hallsofvallhalla wrote: I seldom use it.
Any reason for this?
Post Reply

Return to “General Development”