Created
September 4, 2019 14:08
-
-
Save zone117x/583ee4651ae99e0a3a17eb45e1c796ad to your computer and use it in GitHub Desktop.
MDN JSON Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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