Skip to content

Instantly share code, notes, and snippets.

@mbrown3321
Created October 17, 2020 13:53
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 mbrown3321/b40dcc03f89c9276a39ce57aaedadd9e to your computer and use it in GitHub Desktop.
Save mbrown3321/b40dcc03f89c9276a39ce57aaedadd9e to your computer and use it in GitHub Desktop.
const users = [
{
id: 1,
name: "Michael Scott",
loginCount: 123,
active: false
},
{
id: 2,
name: "Dwight Schrute",
loginCount: 776655,
active: true
},
{
id: 3,
name: "Jim Halpert",
loginCount: 75 ,
active: true
},
{
id: 4,
name: "Ryan Howard",
loginCount: 2,
active: false
},
{
id: 5,
name: "Darryl Philbin",
loginCount: 33,
active: true
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment