0 votes
in JSON by
What is JSON Value?

1 Answer

0 votes
by
In JSON, value holds some data. A value can be a string in double quotes, or a number, or true or false or null, or an object or an array. These structures can be nested.

Values in JSON must be one of the following data types:

a string

a number

an object (JSON object)

an array

a boolean

null
...