Difference between revisions of "Wendy's JSON"

From Coder Merlin
Line 3: Line 3:
== Summary ==
== Summary ==
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.
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.
JSON is also a lightweight data-interchange format and can be used to send data between computers.
== Usage ==
== Usage ==
* In short, JSON is used to transmit data between web applications.
* In short, JSON is used to transmit data between web applications.

Revision as of 10:42, 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. JSON is also a lightweight data-interchange format and can be used to send data between computers.

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.
  • In addition, substitutable with XML.

Board[edit]

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

Rows[edit]

{
    
}

Sources[edit]