Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oakmac/js101
js101 Exercises
https://github.com/oakmac/js101
Last synced: 3 months ago
JSON representation
js101 Exercises
- Host: GitHub
- URL: https://github.com/oakmac/js101
- Owner: oakmac
- License: isc
- Created: 2019-06-21T16:13:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T14:41:46.000Z (about 2 years ago)
- Last Synced: 2024-04-14T12:55:31.976Z (9 months ago)
- Language: JavaScript
- Size: 68.4 KB
- Stars: 1
- Watchers: 2
- Forks: 32
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# JavaScript 101 - Programming Exercises
Programming exercises for a beginning JavaScript programmer.
These exercises focus on basic syntax and core library functions for:
- Functions
- Numbers
- `true`, `false`, `null`, `undefined`
- Strings
- Arrays
- Objects## Install
Make sure that [Node.js] and [npm] are installed. Then, from this directory type:
```sh
npm install
```This will install a folder named `node_modules/` into this folder.
## Directions
You will be writing functions in the JavaScript files found in the `exercises/`
folder.Write your functions and then run:
```sh
npm test
```The goal is to get the test suite to pass all conditions. Good luck!
## Continuously Run Test Suite
You may want to run the test suite anytime a file in `exercises/` changes:
```sh
npm run watch
```This command will continuously run the test suite and stop on the first failing
test.## License
[ISC License](LICENSE.md)
[Node.js]:https://nodejs.org/
[npm]:https://en.wikipedia.org/wiki/Npm_(software)