Javascript Object Notation
JSON is a way to transfer data or information from one page to another page.
JSON stands for JavaScript Object Notation
JSON is a lightweight data transfer format
JSON is language independent
JSON is self-describing and easy to understand
JSON mainly works on the key value pair. We have things which are totally stored in key value pair format
student: [
{
"id":"01",
"name": "Himanshu",
"contact": "7579414837",
"email": "hjhimanshubscit@gmail.com"
},
{
"id":"01",
"name": "Mohan",
"contact": "7579414836",
"email": "mohan@gmail.com"
}
]
0 Comment(s)