JSON Array
An ordered collection of values, enclosed in square brackets []. Values are comma-separated and can be of any valid JSON type.
Arrays are used to represent lists of items. The order of elements is preserved, meaning the first item is at index 0, the second at index 1, and so on. An array can contain values of different types, including other objects and arrays, allowing for complex nested structures.
Example
This array contains a list of tags for a blog post. It holds multiple string values.
[
"technology",
"programming",
"json",
"web-development"
]