An open API service indexing awesome lists of open source software.

https://github.com/mnikander/leetcode_javascript

Learning JavaScript via leetcode exercises
https://github.com/mnikander/leetcode_javascript

Last synced: 5 months ago
JSON representation

Learning JavaScript via leetcode exercises

Awesome Lists containing this project

README

          

# Learning Javascript

A collection of leetcode solutions in JavaScript.
The emphasis is NOT on efficient solutions, but on learning the basics of JavaScript.
The code was run locally using nodejs.

## Getting started

System dependencies:
```bash
sudo apt install nodejs npm
```

```bash
git clone ... # this repo
cd leetcode_js
npm run hello # run the hello_world example
npm test # execute unit tests
```

## Learning resources
- More info on [unit testing in nodejs](https://nodejs.org/api/test.html)
- [W3 schools JavaScript tutorial](https://www.w3schools.com/js/default.asp)
- [W3 schools JavaScript language reference](https://www.w3schools.com/jsref/default.asp)