Created
May 20, 2020 16:32
-
-
Save nbogie/ebac28db5254470c5300954b9adcc30d to your computer and use it in GitHub Desktop.
data for high score table react quick exercise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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