https://github.com/isodevmate/js-2023
https://github.com/isodevmate/js-2023
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/isodevmate/js-2023
- Owner: IsoDevMate
- Created: 2023-06-23T09:15:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T00:42:52.000Z (about 3 years ago)
- Last Synced: 2025-01-26T13:19:27.269Z (over 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.MD
Awesome Lists containing this project
README
## here is a quiz
Create an async function getUsers(names), that gets an array of GitHub logins, fetches the users from GitHub and returns an array of GitHub users.
The GitHub url with user information for the given USERNAME is: https://api.github.com/users/USERNAME.
## Important details:
There should be one fetch request per user.
Requests shouldn’t wait for each other. So that the data arrives as soon as possible.
If any request fails, or if there’s no such user, the function should return null in the resulting array.