├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Youtube][youtube-shield]][youtube-url] 2 | [![Facebook][facebook-shield]][facebook-url] 3 | [![Instagram][instagram-shield]][instagram-url] 4 | [![LinkedIn][linkedin-shield]][linkedin-url] 5 | 6 |

7 |

JavaScript Bangla Tutorial for Beginners Playlist lessons by Learn with Sumit

8 | 9 | ## Youtube Tutorial link 10 | 11 | You can get the complete series of tutorials here - https://lwsbd.link/startjs 12 | 13 | ## How to follow this repository 14 | 15 | This main branch contains the overview of the Tutorial Series. You will get lesson by lesson source code in corresponding branches of this repository. You can access each lesson source code by checking out corresponding branch. For example, to get the source code for Lesson - 2, just follow the below steps: 16 | 17 | 1. Clone this repository 18 | ```sh 19 | git clone https://github.com/learnwithsumit/js-tutorial-for-beginners.git 20 | ``` 21 | 2. Checkout desired branch 22 | ```sh 23 | git checkout lesson-2 24 | ``` 25 | 3. Follow the instructions from that branch readme file. 26 | 27 | 28 | 29 | ## Contact 30 | 31 | Sumit Saha - [sumit@learnwithsumit.com](mailto:sumit@learnwithsumit.com) 32 | 33 | Repository Link: [https://github.com/learnwithsumit/js-tutorial-for-beginners](https://github.com/learnwithsumit/js-tutorial-for-beginners) 34 | 35 | Youtube Channel: [https://youtube.com/LearnwithSumit](https://youtube.com/LearnwithSumit) 36 | 37 | 38 | 39 | [youtube-shield]: https://img.shields.io/badge/-Youtube-black.svg?style=flat-square&logo=youtube&color=555&logoColor=white 40 | [youtube-url]: https://youtube.com/LearnwithSumit 41 | [facebook-shield]: https://img.shields.io/badge/-Facebook-black.svg?style=flat-square&logo=facebook&color=555&logoColor=white 42 | [facebook-url]: https://facebook.com/letslearnwithsumit 43 | [instagram-shield]: https://img.shields.io/badge/-Instagram-black.svg?style=flat-square&logo=instagram&color=555&logoColor=white 44 | [instagram-url]: https://instagram.com/learnwithsumit 45 | [linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555 46 | [linkedin-url]: https://linkedin.com/company/learnwithsumit 47 | --------------------------------------------------------------------------------