Created
October 17, 2020 13:53
-
-
Save mbrown3321/b40dcc03f89c9276a39ce57aaedadd9e to your computer and use it in GitHub Desktop.
This file contains 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
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