scrimba
Frontend Career Path
Working with APIs
Intro to APIs
JSON Review
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
JSON Review
Expand for more info
person.json
run
preview
console
{
"name": "Joe Schmoe",
"age": 42,
"gender": "male",
"hobbies": [
"skiing",
"surfing",
"piccolo"
]
}
Console
{name:
"Joe Schmoe"
, age:
42
, gender:
"male"
, hobbies:
[
"skiing"
,
"surfing"
,
"piccolo"
]
}
,
/index.html
-5:14