├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "javascript-cs-fundamentals"] 2 | path = javascript-cs-fundamentals 3 | url = git@github.com:HaysS/javascript-cs-fundamentals.git 4 | [submodule "big-o-notation"] 5 | path = big-o-notation 6 | url = git@github.com:HaysS/big-o-notation.git 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Ultimate JavaScript Tutorials | Learn Everything JS & Node 👋

2 |

3 | 4 | Twitter: haysstanford 5 | 6 |

7 | 8 | > This is the source code companion for series of tutorials going over detailed JavaScript topics, right down to multithreading with web workers. 9 | 10 | ### 🏠 [Homepage](https://haysstanford.com) 11 | 12 | ## Install 13 | 14 | ```sh 15 | git clone https://github.com/HaysS/javascript-tutorials.git 16 | ``` 17 | 18 | ## Author 19 | 20 | 👤 **Hays Stanford** 21 | 22 | * Website: www.haysstanford.com 23 | * Twitter: [@haysstanford](https://twitter.com/haysstanford) 24 | * Github: [@HaysS](https://github.com/HaysS) 25 | * LinkedIn: [@hayss](https://linkedin.com/in/hayss) 26 | 27 | ## Show your support 28 | 29 | Give a ⭐️ if this project helped you! 30 | 31 | 32 | 33 | 34 | 35 | *** 36 | _This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_ 37 | --------------------------------------------------------------------------------