Creating grades for the getGrades project

We're going to go ahead and create a few grades. First up, let's create a grade with an id of 1. Now, this 1 is going to be attached to Andrew, so we'll go ahead and use the schoolId to do that. The schoolId, in this case for Andrew, is 101. Then, we're going to put in the actual grade. In this case, I'll go ahead and give myself an 86:

const grades = [{  id: 1,  schoolId: 101,  grade: 86}];

This is grade 1; let's go ahead and create three more grades. I'm going to copy it, toss in a comma, and paste it two times. This one is going to have an id of 2. We can associate this one with Jessica, so we'll give her the schoolId value of 999. She's really smart so we'll give her a 100. Finally, id of 3: we'll ...

Get Advanced Node.js Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.