Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinjaz/js
Practical examples of JavaScript basics including OOP, inheritance, promises, closures, generators, coroutines and more...
https://github.com/sinjaz/js
basics closure composition inheritance javascripts js object oop orientation promises
Last synced: about 2 months ago
JSON representation
Practical examples of JavaScript basics including OOP, inheritance, promises, closures, generators, coroutines and more...
- Host: GitHub
- URL: https://github.com/sinjaz/js
- Owner: sinjaz
- Created: 2017-02-19T01:53:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T14:21:04.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T14:19:24.627Z (2 months ago)
- Topics: basics, closure, composition, inheritance, javascripts, js, object, oop, orientation, promises
- Language: JavaScript
- Homepage:
- Size: 584 KB
- Stars: 7
- Watchers: 6
- Forks: 4
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Code Samples
### 1. Do you have Node installed?
Check if you have node:
```
node -v
```
If it displays the version like this:
```
$ node -v
v7.5.0
```
Then you're fine. That means you have Node.
If not, download from `https://nodejs.org/en/` and install.### 2. Go into a directory
```
cd ONE_OF_THE_DIRECTORIES
```
for example:
```
cd promises
```### 3. Run using node
```
node index.js
```