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
- Host: GitHub
- URL: https://github.com/mnikander/leetcode_javascript
- Owner: mnikander
- License: mit
- Created: 2024-11-30T15:26:36.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-24T09:50:55.000Z (11 months ago)
- Last Synced: 2025-03-08T13:28:36.554Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)