Skip to content

Instantly share code, notes, and snippets.

@zone117x
Created September 4, 2019 14:08
Show Gist options
  • Save zone117x/583ee4651ae99e0a3a17eb45e1c796ad to your computer and use it in GitHub Desktop.
Save zone117x/583ee4651ae99e0a3a17eb45e1c796ad to your computer and use it in GitHub Desktop.
MDN JSON Sample
{
"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"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment