Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save varunthefalcon/84a7410282b72612c03a71c57081f905 to your computer and use it in GitHub Desktop.

Select an option

Save varunthefalcon/84a7410282b72612c03a71c57081f905 to your computer and use it in GitHub Desktop.
const students = [
{
name: "5student",
id: 5,
class: 6,
attendance: false,
report: { math: 99, physics: 23, chem: 72, lang: 2, science: 24 },
},
{
name: "6student",
id: 6,
class: 1,
attendance: false,
report: { math: 60, physics: 6, chem: 69, lang: 41, science: 35 },
},
{
name: "7student",
id: 7,
class: 10,
attendance: true,
report: { math: 87, physics: 11, chem: 23, lang: 65, science: 35 },
},
{
name: "8student",
id: 8,
class: 6,
attendance: false,
report: { math: 25, physics: 33, chem: 14, lang: 23, science: 90 },
},
{
name: "9student",
id: 9,
class: 5,
attendance: true,
report: { math: 96, physics: 52, chem: 83, lang: 33, science: 20 },
},
{
name: "10student",
id: 10,
class: 2,
attendance: true,
report: { math: 60, physics: 63, chem: 65, lang: 18, science: 91 },
},
{
name: "11student",
id: 11,
class: 2,
attendance: false,
report: { math: 62, physics: 31, chem: 69, lang: 21, science: 15 },
},
{
name: "12student",
id: 12,
class: 9,
attendance: true,
report: { math: 90, physics: 99, chem: 65, lang: 61, science: 53 },
},
{
name: "13student",
id: 13,
class: 1,
attendance: false,
report: { math: 42, physics: 61, chem: 25, lang: 70, science: 28 },
},
{
name: "14student",
id: 14,
class: 5,
attendance: true,
report: { math: 23, physics: 32, chem: 39, lang: 8, science: 61 },
},
{
name: "15student",
id: 15,
class: 7,
attendance: true,
report: { math: 12, physics: 37, chem: 59, lang: 83, science: 64 },
},
{
name: "16student",
id: 16,
class: 6,
attendance: true,
report: { math: 34, physics: 59, chem: 63, lang: 8, science: 59 },
},
{
name: "17student",
id: 17,
class: 9,
attendance: true,
report: { math: 32, physics: 10, chem: 11, lang: 52, science: 1 },
},
{
name: "18student",
id: 18,
class: 6,
attendance: false,
report: { math: 26, physics: 78, chem: 23, lang: 21, science: 53 },
},
{
name: "19student",
id: 19,
class: 5,
attendance: false,
report: { math: 97, physics: 42, chem: 37, lang: 15, science: 32 },
},
{
name: "20student",
id: 20,
class: 3,
attendance: true,
report: { math: 24, physics: 17, chem: 24, lang: 13, science: 89 },
},
{
name: "21student",
id: 21,
class: 2,
attendance: false,
report: { math: 15, physics: 54, chem: 45, lang: 5, science: 88 },
},
{
name: "22student",
id: 22,
class: 4,
attendance: false,
report: { math: 60, physics: 85, chem: 23, lang: 37, science: 88 },
},
{
name: "23student",
id: 23,
class: 1,
attendance: true,
report: { math: 37, physics: 3, chem: 58, lang: 77, science: 80 },
},
{
name: "24student",
id: 24,
class: 2,
attendance: false,
report: { math: 79, physics: 98, chem: 78, lang: 7, science: 26 },
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment