0

Could anyone please tell me about Javascript object notation data Structure? Brief idea also welcome

dbc
  • 104,963
  • 20
  • 228
  • 340

1 Answers1

0

JSON not JASON..

you can save it as plain string as it is something like:

{
    "colorsArray":[{
            "red":"#f00",
            "green":"#0f0",
            "blue":"#00f",
            "cyan":"#0ff",
            "magenta":"#f0f",
            "yellow":"#ff0",
            "black":"#000"
        }
    ]
}

objects within { } arrays [ ]

more info on JSON.org

Subliminal Hash
  • 13,614
  • 20
  • 73
  • 104