Last active
June 13, 2020 12:59
-
-
Save IDdesigner/25073bdf92b8bcae7c0b224bb0decb2e to your computer and use it in GitHub Desktop.
JSON of the planets
This file contains hidden or 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
[ | |
{ | |
"planet": "Mercury", | |
"moons": 0, | |
"diameter": 4879, | |
"distanceFromSun": 57.9 | |
}, | |
{ | |
"planet": "Venus", | |
"moons": 0, | |
"diameter": 12104, | |
"distanceFromSun": 108.2 | |
}, | |
{ | |
"planet": "Earth", | |
"moons": 1, | |
"diameter": 12756, | |
"distanceFromSun": 149.6 | |
}, | |
{ | |
"planet": "Mars", | |
"moons": 0, | |
"diameter": 6792, | |
"distanceFromSun": 227.9 | |
}, | |
{ | |
"planet": "Jupiter", | |
"moons": 67, | |
"diameter": 142984, | |
"distanceFromSun": 778.6 | |
}, | |
{ | |
"planet": "Saturn", | |
"moons": 62, | |
"diameter": 120536, | |
"distanceFromSun": 1433.5 | |
}, | |
{ | |
"planet": "Uranus", | |
"moons": 27, | |
"diameter": 51118, | |
"distanceFromSun": 2872.5 | |
}, | |
{ | |
"planet": "Neptune", | |
"moons": 14, | |
"diameter": 49528, | |
"distanceFromSun": 4495.1 | |
}, | |
{ | |
"planet": "Pluto(Dwarf-Planet)", | |
"moons": 5, | |
"diameter": 2370, | |
"distanceFromSun": 5906.4 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment