what is going on

This commit is contained in:
Frank Delaguila
2022-10-04 20:46:30 -06:00
commit 001e362d38
14 changed files with 8399 additions and 0 deletions

84
db.js Normal file
View File

@@ -0,0 +1,84 @@
const dbData = {
"2021": {
"passCompletions": 18.1,
"passAttempts": 28.6
},
"2022": {
"passCompletions": 20.2,
"passAttempts": 29
},
"games": [
{
"opponent": "florida",
"date": "Sep 3, 2022",
"utah_score": 26,
"opponent_points": 29
},
{
"opponent": "southernutah",
"date": "Sep 10, 2022",
"utah_score": 73,
"opponent_points": 7
},
{
"opponent": "sandiegostate",
"date": "Sep 17, 2022",
"utah_score": 35,
"opponent_points": 7
},
{
"opponent": "arizonastate",
"date": "Sep 24, 2022",
"utah_score": 34,
"opponent_points": 13
},
{
"opponent": "oregonstate",
"date": "Oct 1, 2022",
"utah_score": 42,
"opponent_points": 16
},
{
"opponent": "ucla",
"date": "Oct 8, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "usc",
"date": "Oct 15, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "washingtonstate",
"date": "Oct 27, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "arizona",
"date": "Nov 5, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "stanford",
"date": "Nov 12, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "oregon",
"date": "Nov 19, 2022",
"utah_score": 0,
"opponent_points": 0
},
{
"opponent": "colorado",
"date": "Nov 26, 2022",
"utah_score": 0,
"opponent_points": 0
}
]
}