Difference between revisions of "Wendy's JSON"

From Coder Merlin
Line 25: Line 25:


== Sources ==
== Sources ==
* [developer.mozilla.org%2Fen-US%2Fdocs%2FLearn%2FJavaScript%2FObjects%2FJSON (Mozilla)]
* [https://stackoverflow.com/questions/383692/what-is-json-and-what-is-it-used-for#:~:text=The%20JSON%20format%20is%20often,as%20an%20alternative%20to%20XML.&text=JSON%20is%20JavaScript%20Object%20Notation. (Stack Overflow)]
* [https://stackoverflow.com/questions/383692/what-is-json-and-what-is-it-used-for#:~:text=The%20JSON%20format%20is%20often,as%20an%20alternative%20to%20XML.&text=JSON%20is%20JavaScript%20Object%20Notation. (Stack Overflow)]

Revision as of 10:38, 8 September 2021

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

JSON[edit]

Summary[edit]

JSON, otherwise known as JavaScript Object Notation, is a structure used to store and describe multiple objects. Although it was originally used in JavaScript, JSON is language-independent and can be used in nearly any application.

Usage[edit]

  • In short, JSON is used to transmit data between web applications.
  • For example, sending data from the server to the client.
  • For instance, having the server tell and transmit data to the client to display a picture.

Board[edit]

{
   "Board": Board
   "Rows" : 9
   "Columns": 9
   "Grids": 9
   "Tiles": 81
}

Rows[edit]

{


}

Sources[edit]