Answers for "json object array"

6

json example array

{
	"name":"John",
	"age":30,
	"cars":[ "Ford", "BMW", "Fiat" ]
}

// Another exemple
{
    "people": [
        {
            "website": "stackabuse.com",
            "from": "Nebraska",
            "name": "Scott"
        },
        {
            "website": "google.com",
            "from": "US",
            "name": "Zuck"
        }
    ]
}
Posted by: Guest on January-14-2021
3

json object array

const Object = {a:1,
                 b:'ab'
                };


const Array = [1,
                 'ab',
                 4
                ];
Posted by: Guest on May-14-2021

Code answers related to "json object array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language