https://github.com/sunthecoder/timeout
https://github.com/sunthecoder/timeout
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sunthecoder/timeout
- Owner: SunTheCoder
- Created: 2024-04-15T23:12:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T03:44:01.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T07:15:52.738Z (about 1 year ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Timeout Project
Time to practice dealing with asynchronous functions like `setTimeout` and
`setInterval`. Your objective is to implement the functions in each file
of the `/problems` directory. In addition to the prompts available at the
top of each file, test specs are provided to test your work.
To get started, use the following commands:
1. `cd` into the project directory
2. `npm install` to install any dependencies
3. `npm test` to run the test cases
**Important Note:**
It is very helpful to run each node file with `console.log`s to observe the
behavior of your code and help with debugging. However, **you MUST comment out
any local test cases** that you add to the problem files before running the
tests, because additional logs may cause the tests to fail.