Answers for "json example 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
11

json arrays

{
  "array": [{1,2,3,4,5,6}]
}
Posted by: Guest on June-17-2020
1

hwo to access arary in json

console.log(dataJS);
console.log(dataJS[0].eee1);
console.log(dataJS[0].comments[0]);
Posted by: Guest on November-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language