Skip to content

Instantly share code, notes, and snippets.

@loriculberson
Last active December 19, 2022 23:24
Show Gist options
  • Save loriculberson/e3c2430519de321f59fd2b0c62ba73a8 to your computer and use it in GitHub Desktop.
Save loriculberson/e3c2430519de321f59fd2b0c62ba73a8 to your computer and use it in GitHub Desktop.
//playerData.js
const alexHobbies = ["dancing", "making YouTube videos", "fishing"];
const joseHobbies = ["travel", "eating burgers", "skiiing"];
const framerberHobbies = ["hunting wabbits", "Sunshine Kids volunteer", "grilling"];
const yordanHobbies = []
const jeremyHobbies = []
export const playerData = [
{ id: 1, firstName: "Alex", lastName: "Bregman", hobbies: alexHobbies, jerseyNumber: 2 },
{ id: 4, firstName: "Yordan", lastName: "Alvarez", hobbies: yordanHobbies, jerseyNumber: 44 },
{ id: 3, firstName: "Jose", lastName: "Altuve", hobbies: joseHobbies, jerseyNumber: 27 },
{ id: 5, firstName: "Framber", lastName: "Valdez", hobbies: framerberHobbies, jerseyNumber: 59 },
{ id: 2, firstName: "Jeremy", lastName: "Pena", hobbies: jeremyHobbies, jerseyNumber: 3 },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment