Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mbrsagor/js-pro

Javascript A to Z node.
https://github.com/mbrsagor/js-pro

data-structures javascript javascript-es6 javascript30

Last synced: 12 days ago
JSON representation

Javascript A to Z node.

Awesome Lists containing this project

README

        

# JavaScript-Pro
> The repo will new javascript professional A to Z guide line.

### Features:
- ES6
- Arrow function
- Class
- OOP
- Object/Instance
- Access modifier

- Functional
- Function
- Object
- Loop
- For loop
- While loop
- Do While loop
- Module
- Dom
- Styleduide
- File sytem
- And also there are many other functions and features.

- Other features
- Factorial numbers
- Febonic numbers
- Odd and Event numbers
- Few problems solved

###### JavaScript `yield` use

```javascript
function* foo(index) {
while (index < 2) {
yield index;
index++;
}
}

const iterator = foo(0);

console.log(iterator.next().value);
// expected output: 0

console.log(iterator.next().value);
// expected output: 1

```