Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mbrsagor/js-pro
- Owner: mbrsagor
- Created: 2020-09-12T04:02:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-31T17:42:31.000Z (over 3 years ago)
- Last Synced: 2024-11-13T05:32:08.074Z (2 months ago)
- Topics: data-structures, javascript, javascript-es6, javascript30
- Language: JavaScript
- Homepage:
- Size: 266 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: 0console.log(iterator.next().value);
// expected output: 1```