scrimba
Intro to JavaScript
Challenge: Social JS
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

Challenge: Social JS
AboutCommentsNotes
Challenge: Social JS
Expand for more info
instructions.md
run
preview
console
Assignment - Social JS

Create a model to represent the database of a new social media platform you're creating. It can be about whatever you want, but it needs the following:

At least 3 nested levels of data (including objects and arrays)
At least 1 method
Span across at least 50 lines of code. (No empty lines)
Example:

var mountainClimber = {
name: "Bob",
age: 31,
favoriteClimbs: [],
mountainClimbingFriends: [
{
name: "Sarah",
age: 31,
favoriteClimbs: [
{
climbName: "Mount Everest",
difficulty: 10
},
... etc ...
]
},
{

}
]
}

After you create the base object, you need to:

Add 2 properties to one of the objects (doesn't matter what level of nested data you do this to)
Add 2 items to at least one of the arrays in your data
Console
/index.html
-10:54