Home  • Programming • JavaScript
JSON: JavaScript Object Notation. 1JSON is lightweight text-data interchange format 2JSON is language independent * 3JSON is "self-describing" and easy to understand
JSON uses JavaScript syntax for describing data objects, but JSON is still language and platform independent. JSON parsers and JSON libraries exists for many different programming languages.
JSON Example
{
"employees": [
{ "firstName":"John" , "lastName":"Doe" },
{ "firstName":"Anna" , "lastName":"Smith" },
{ "firstName":"Peter" , "lastName":"Jones" }
]
}

Comments 0


Copyright © 2025. Powered by Intellect Software Ltd