|
1 |
| -# JavaScript-Programming-Mastery |
| 1 | +<!-- social media connecting shield --> |
| 2 | + |
| 3 | +[![Website][website-shield]][website-url] |
| 4 | +[![Facebook][facebook-shield]][facebook-url] |
| 5 | +[![Instagram][instagram-shield]][instagram-url] |
| 6 | +[![Twitter][twitter-shield]][twitter-url] |
| 7 | +[![LinkedIn][linkedin-shield]][linkedin-url] |
| 8 | +[![Github][github-shield]][github-url] |
| 9 | + |
| 10 | +<p align="center"> |
| 11 | + <img src="JavaScript-Banner.png" title="JavaScript Banner With Samiur Rahman Mukul" alt="JavaScript-Banner" width="450" height="300" style="border: 1px solid #000; border-radius: 4px; padding: 5px;" /> |
| 12 | +</p> |
| 13 | + |
| 14 | +# JavaScript Programming Mastery |
| 15 | + |
| 16 | +<p align="center"> |
| 17 | + <strong>What is JavaScript ?</strong> <br /> |
| 18 | + ✨ JavaScript is a dynamic programming language that's used for web development, in web applications, for game development, and lots more. It allows you to implement dynamic features on web pages that cannot be done with only HTML and CSS. |
| 19 | +</p> |
| 20 | + |
| 21 | +### JavaScript Basic Syntax |
| 22 | + |
| 23 | +```js |
| 24 | + // variable declare |
| 25 | + var name = "Samiur Rahman Mukul"; |
| 26 | + const degree = "B.Sc. Engineering in CSE"; |
| 27 | + let age = 22; |
| 28 | + |
| 29 | + // simple function declare |
| 30 | + function() { |
| 31 | + console.log("Hello World!"); |
| 32 | + }; |
| 33 | + |
| 34 | + // arrow function declare (ES6 feature) |
| 35 | + const aboutMe = (name, age, degree) => { |
| 36 | + console.log(`Name: ${name} \n Education: ${degree} \n Age: ${age}`); |
| 37 | + }; |
| 38 | +``` |
| 39 | + |
| 40 | +## Repository Content Of Glance |
| 41 | + |
| 42 | +- 1-JavaScript-Fundamental |
| 43 | +- 2-JavaScript-Tutorial |
| 44 | +- 3-JavaScript-Problem-Solving |
| 45 | +- 4-JavScript-ES6-&-OOP |
| 46 | +- 5-JS-Data-Structure-And-Algorithm |
| 47 | +- 6-JavaScript-DOM-&-BOM |
| 48 | +- 7-JavaScript-Async-Callback-Promise |
| 49 | +- 8-JavaScript-API-Calling |
| 50 | +- 9-JavaScript-JSON |
| 51 | +- 10-JavaScript-AJAX |
| 52 | +- 11-JavaScript-jQuery |
| 53 | +- 12-JavaScript-More-Library |
| 54 | +- 13-JS-Example-&-References |
| 55 | +- 14-JavaScript-Interview-Preparation |
| 56 | +- 15-JavaScript-Advanced-Topics |
| 57 | + |
| 58 | +<p align="center"> |
| 59 | + <b>HAPPY <i>JavaScript</i> PROGRAMMING & WEB DEVELOPING 👩💻 </b> |
| 60 | +</p> |
| 61 | + |
| 62 | +<!-- my website & social media links --> |
| 63 | + |
| 64 | +[website-url]: http://www.SamiurRahmanMukul.epizy.com |
| 65 | +[facebook-url]: https://www.facebook.com/SamiurRahmanMukul |
| 66 | +[instagram-url]: https://www.instagram.com/samiur_rahman_mukul |
| 67 | +[twitter-url]: https://www.twitter.com/SamiurRahMukul |
| 68 | +[linkedin-url]: https://www.linkedin.com/in/SamiurRahmanMukul |
| 69 | +[github-url]: https://www.github.com/SamiurRahmanMukul |
| 70 | + |
| 71 | +<!-- shield icon links --> |
| 72 | + |
| 73 | +[website-shield]: https://img.shields.io/badge/-Website-black.svg?style=flat-square&logo=appveyor&color=555&logoColor=white |
| 74 | +[facebook-shield]: https://img.shields.io/badge/-Facebook-black.svg?style=flat-square&logo=facebook&color=555&logoColor=white |
| 75 | +[instagram-shield]: https://img.shields.io/badge/-Instagram-black.svg?style=flat-square&logo=instagram&color=555&logoColor=white |
| 76 | +[twitter-shield]: https://img.shields.io/badge/-Twitter-black.svg?style=flat-square&logo=twitter&color=555&logoColor=white |
| 77 | +[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555 |
| 78 | +[github-shield]: https://img.shields.io/badge/-Github-black.svg?style=flat-square&logo=github&color=555&logoColor=white |
0 commit comments