Skip to content

Instantly share code, notes, and snippets.

@nbogie
Created May 20, 2020 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbogie/ebac28db5254470c5300954b9adcc30d to your computer and use it in GitHub Desktop.
Save nbogie/ebac28db5254470c5300954b9adcc30d to your computer and use it in GitHub Desktop.
data for high score table react quick exercise
let allCountryScores = [
{
name: "Ethiopia",
scores: [ {n: "Hanif", s: 999999999}, {n: "neill", s: 999999}, {n: "bob", s: "4134234"}, {n: "Hanif", s: "700"}]
},
{
name: "Scotland",
scores: [ {n: "lucy", s: 9999}, {n: "groundkeeper willie", s: 4000}, {n: "braveheart", s: 200}]
},
{
name: "Colombia",
scores: [ {n: "Melanie", s: "99999999"}, {n: "Maria", s: 5000}, {n: "Boss", s: 6000}]
},
{
name: "Turkey",
scores: [ {n: "mahmut", s: 1000 }, {n: "morat", s: 999 }, {n: "selim", s: 900 }, ]
},
{
name: "Iran",
scores: [ {n: "arosha", s: 5550 }, {n: "zahra", s: 3000 }, {n: "nader", s: 2000 }, {n: "Bani", s: 1999 } ]
},
{
name: "Bangladesh",
scores: [ {n: "rayhan", s: 18238123}, {n: "ali", s: 5400000}, {n: "rahman", s: 700200} ]
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment