Login Login
MORE

WIDGETS

Widgets

Wanted articles
Who is online?
Article tools

JSON:Strutture Dati

From Aino Wiki

Jump to: navigation, search

Tipi di dato

Dato strutturato

Da Oggetti JSON

{
  "squadName": "Super hero squad",
  "homeTown": "Metro City",
  "formed": 2016,
  "secretBase": "Super tower",
  "active": true,
  "members": [
    {
      "name": "Molecule Man",
      "age": 29,
      "secretIdentity": "Dan Jukes",
      "powers": ["Radiation resistance", "Turning tiny", "Radiation blast"]
    },
    {
      "name": "Madame Uppercut",
      "age": 39,
      "secretIdentity": "Jane Wilson",
      "powers": [
        "Million tonne punch",
        "Damage resistance",
        "Superhuman reflexes"
      ]
    },
    {
      "name": "Eternal Flame",
      "age": 1000000,
      "secretIdentity": "Unknown",
      "powers": [
        "Immortality",
        "Heat Immunity",
        "Inferno",
        "Teleportation",
        "Interdimensional travel"
      ]
    }
  ]
}

Esempio di accesso:

superHeroes["members"][1]["powers"][2];
//retituirà:  Turning tiny


Mappa e Link


JSON


JavaScript


Parole chiave:

Author