JSON Question: Download JSON PDF

Explain Syntax of JSON?

Tweet Share WhatsApp

Answer:

JSON is smaller than XML, and faster and easier to parse. Below is a basic syntax of JSON
JSON CODE
{
"studeents": [
{ "firstName":"Ali" , "lastName":"Khan" },
{ "firstName":"John" , "lastName":"Sena" },
{ "firstName":"Kate" , "lastName":"Winslet" }
]
}

Download JSON PDF Read All 12 JSON Questions
Previous QuestionNext Question
What is JSON?How to convert JSON Text to a JavaScript Object?