Created
December 8, 2021 07:35
-
-
Save ymulenll/76e124759ed0ff40791a1173cd4580bf to your computer and use it in GitHub Desktop.
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 users = [ | |
| { | |
| id: 1, | |
| name: "Leanne Graham", | |
| username: "Bret", | |
| email: "[email protected]", | |
| phone: "1-770-736-8031 x56442", | |
| website: "hildegard.org", | |
| }, | |
| { | |
| id: 2, | |
| name: "Ervin Howell", | |
| username: "Antonette", | |
| email: "[email protected]", | |
| phone: "010-692-6593 x09125", | |
| website: "anastasia.net", | |
| }, | |
| { | |
| id: 3, | |
| name: "Clementine Bauch", | |
| username: "Samantha", | |
| email: "[email protected]", | |
| phone: "1-463-123-4447", | |
| website: "ramiro.info", | |
| }, | |
| { | |
| id: 4, | |
| name: "Patricia Lebsack", | |
| username: "Karianne", | |
| email: "[email protected]", | |
| phone: "493-170-9623 x156", | |
| website: "kale.biz", | |
| }, | |
| { | |
| id: 5, | |
| name: "Chelsey Dietrich", | |
| username: "Kamren", | |
| email: "[email protected]", | |
| phone: "(254)954-1289", | |
| website: "demarco.info", | |
| }, | |
| { | |
| id: 6, | |
| name: "Mrs. Dennis Schulist", | |
| username: "Leopoldo_Corkery", | |
| email: "[email protected]", | |
| phone: "1-477-935-8478 x6430", | |
| website: "ola.org", | |
| }, | |
| { | |
| id: 7, | |
| name: "Kurtis Weissnat", | |
| username: "Elwyn.Skiles", | |
| email: "[email protected]", | |
| phone: "210.067.6132", | |
| website: "elvis.io", | |
| }, | |
| { | |
| id: 8, | |
| name: "Nicholas Runolfsdottir V", | |
| username: "Maxime_Nienow", | |
| email: "[email protected]", | |
| phone: "586.493.6943 x140", | |
| website: "jacynthe.com", | |
| }, | |
| { | |
| id: 9, | |
| name: "Glenna Reichert", | |
| username: "Delphine", | |
| email: "[email protected]", | |
| phone: "(775)976-6794 x41206", | |
| website: "conrad.com", | |
| }, | |
| { | |
| id: 10, | |
| name: "Clementina DuBuque", | |
| username: "Moriah.Stanton", | |
| email: "[email protected]", | |
| phone: "024-648-3804", | |
| website: "ambrose.net", | |
| }, | |
| ]; | |
| export function getAllUsers() { | |
| return users; | |
| } | |
| export function getUser(id) { | |
| return users.find((user) => user.id === id); | |
| } | |
| export function deleteUser(id) { | |
| users = users.filter((user) => user.id !== id); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment