0 votes
in JSON by
Can you write an example code in JSON?

1 Answer

0 votes
by
The following example shows how to use JSON to store information related to books based on their topic and edition.

{

"book": [

 

{

"id":"01",

"language": "Java",

"edition": "third",

"author": "Herbert Schildt"

},

 

{

"id":"07",

"language": "C++",

"edition": "second"

"author": "E.Balagurusamy"

}

]

}

Related questions

0 votes
asked Jul 21, 2020 in JSON by SakshiSharma
0 votes
asked Jul 21, 2020 in JSON by SakshiSharma
...