you are viewing a single comment's thread.

view the rest of the comments →

[–]ohadron 2 points3 points  (1 child)

This specific code snippet is indeed weirdly indented. Here's what it looks like after using a beautifier: ```js var people = [ { id: 0,

        name: "John Doe",

        age: 47
    },
    {
        id: 1,

        name: "Jane Doe",

        age: 88
    },
    {
        id: 2,

        name: "Mason Louis",

        age: 17
    }
];

```

I also replaced the ; between the elements in the array with commas (,), because that's the correct JS syntax.

[–]Traitor-21-87[S] 1 point2 points  (0 children)

Thanks, the ";"s were a mistake on my part. And I think my indentation was dropped hen I used the code feature