Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenmueller/javascript-exercises
Fun JavaScript exercises to prepare you for interviews
https://github.com/kenmueller/javascript-exercises
Last synced: about 2 months ago
JSON representation
Fun JavaScript exercises to prepare you for interviews
- Host: GitHub
- URL: https://github.com/kenmueller/javascript-exercises
- Owner: kenmueller
- Created: 2019-05-02T17:41:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T20:52:42.000Z (about 2 years ago)
- Last Synced: 2024-05-28T15:29:30.196Z (7 months ago)
- Language: JavaScript
- Size: 563 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Exercises
**Implement JavaSript functions from the ground up**
## Initialization
1. Clone the repo
2. Run `npm install` (if you get an error, run `npm i -g npm`)
3. Run `cd exercises````bash
npm test {filename}
```## Exercises
**Easy**
1. map
2. filter
3. uniq**Medium**
1. flatten
2. reduce
3. break**Hard**
1. sample
2. safeGet
3. memoize**Extra Hard**
1. curry
2. debounce## Solutions
- You can see the solutions if you switch to the `solutions` branch. But that's no fun.