├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # **Learn JavaScript 📚** 2 | 3 | A JavaScript handbook for developers of all levels, whether you're a beginner exploring JavaScript concepts or an experienced developer looking to refresh your knowledge. This handbook will help you understand core principles, improve coding skills, and stay up to date with best practices. 4 | 5 | --- 6 | 7 | ## **📚 Learn JavaScript in Detail** 8 | 9 | ### **Introduction to JavaScript** 10 | 11 | - [Beginner’s Guide: How to Learn JavaScript](https://www.freecodecamp.org/news/how-to-learn-javascript-effectively/) - Article 12 | - [The Weird History of JavaScript](https://dev.to/codediodeio/the-weird-history-of-javascript-2bnb) - Article 13 | - [JavaScript Crash Course for Beginners](https://www.youtube.com/watch?v=hdI2bqOjy3c&t=2s) - Video 14 | - [Learn JavaScript - Full Course for Beginners](https://www.youtube.com/watch?v=PkZNo7MFNFg) - Video 15 | - [Build a Netflix Landing Page Clone (HTML, CSS & JS)](https://www.youtube.com/watch?v=P7t13SGytRk&t=22s) - Video 16 | - [A Brief History of JavaScript](https://roadmap.sh/guides/history-of-javascript) - Article 17 | 18 | --- 19 | 20 | ### **JavaScript Variables** 21 | 22 | - [JavaScript Variables](https://javascript.info/variables) - Article 23 | - [Understanding JavaScript Hoisting](https://www.youtube.com/watch?v=EvfRXyKa_GI) - Video 24 | - [Variable Naming Tips](https://www.codeguage.com/courses/js/variables#Tips_for_naming_variables) - Article 25 | - [Variable Scopes Explained](https://www.youtube.com/watch?v=_E96W6ivHng) - Video 26 | - [Scopes in JavaScript](https://www.w3schools.com/js/js_scope.asp) - Article 27 | 28 | --- 29 | 30 | ### **JavaScript Data Types** 31 | 32 | - [JavaScript Data Types](https://www.codeguage.com/courses/js/data-types) - Article 33 | - [JavaScript Data Types and Data Structures](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures) - Article 34 | - [JS Data Types in Detail](https://javascript.info/types) - Article 35 | 36 | --- 37 | 38 | ### **Expressions and Operators** 39 | 40 | - [JavaScript Expressions and Operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_operators) - Article 41 | 42 | 43 | --- 44 | 45 | ### **JavaScript Equality Comparisons** 46 | 47 | - [JavaScript Comparisons](https://www.w3schools.com/js/js_comparisons.asp) - Article 48 | - [Equality Operators in JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#equality_operators) - Article 49 | 50 | 51 | --- 52 | 53 | ### **JavaScript Type Casting** 54 | 55 | - [Type Conversions in Detail](https://javascript.info/type-conversions) - Article 56 | - [JavaScript Type Conversion & Coercion](https://medium.com/@mila.mirovic98/javascript-fundamentals-type-conversion-coercion-8bbba10c9925) - Article 57 | - [JS Type Conversion (Explicit & Implicit)](https://www.freecodecamp.org/news/coercion-and-type-conversion-in-javascript/) - Article 58 | 59 | --- 60 | 61 | ### **Control Flow** 62 | 63 | - [JavaScript Control Flow](https://developer.mozilla.org/en-US/docs/Glossary/Control_flow) - Article 64 | 65 | --- 66 | 67 | ### **JavaScript Loops and Iterations** 68 | 69 | - [Loops and Iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Loops_and_iteration) - Article 70 | 71 | --- 72 | 73 | ### **JavaScript Functions** 74 | 75 | - [Functions in JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Functions) - Article 76 | - [JavaScript Functions in Detail](https://www.codeguage.com/courses/js/functions-basics) - Article 77 | 78 | --- 79 | 80 | ### **The `this` Keyword** 81 | 82 | - [The JavaScript `this` Keyword](https://www.w3schools.com/js/js_this.asp) - Article 83 | - [Understanding `this` in JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this) - Article 84 | 85 | --- 86 | 87 | ### **Data Structures** 88 | 89 | - [Introduction to the Stack Data Structure](https://www.youtube.com/watch?v=4F-BnR2XwqU) - Video 90 | - [Introduction to the Queue Data Structure](https://www.youtube.com/watch?v=GRA_3Ppl2ZI) - Video 91 | - [Intro to Recursion: Anatomy of a Recursive Solution](https://www.youtube.com/watch?v=yBWlPte6FhA) - Video 92 | - [Binary Tree Algorithms for Technical Interviews - Full Course](https://www.youtube.com/watch?v=fAAZixBzIAI) - Video 93 | - [Graph Algorithms for Technical Interviews - Full Course](https://www.youtube.com/watch?v=tWVWeAqZ0WU) - Video 94 | - [Dynamic Programming - Solve Algorithmic Problems & Coding Challenges](https://www.youtube.com/watch?v=oBt53YbR9Kk) - Video 95 | 96 | --- 97 | 98 | ### **DOM APIs** 99 | 100 | - [Understanding the DOM](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) - Article 101 | - [Introduction to Web APIs](https://www.w3schools.com/js/js_api_intro.asp) - Article 102 | 103 | --- 104 | 105 | ### **Strict Mode** 106 | 107 | - [Strict Mode in JavaScript](https://javascript.info/strict-mode) - Article 108 | - [Strict Mode in Detail](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) - Article 109 | 110 | --- 111 | 112 | ### **Asynchronous JavaScript** 113 | 114 | - [Asynchronous JavaScript - MDN](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous/Introducing) - Article 115 | - [Event Loop & Asynchronous JavaScript - JSConf](https://www.youtube.com/watch?v=8aGhZQkoFbQ) - Video 116 | - [Visualizing Asynchronous JavaScript](https://www.youtube.com/watch?v=eiC58R16hb8) - Video 117 | 118 | --- 119 | 120 | ### **Working with APIs** 121 | 122 | - [Fetching Data from the Server](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Fetching_data) - Article 123 | - [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) - Article 124 | - [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) - Article 125 | - [Is Fetch API Better than XMLHttpRequest?](https://medium.com/beginners-guide-to-mobile-web-development/the-fetch-api-2c962591f5c) - Article 126 | - [Ajax Battle: XMLHttpRequest vs Fetch API](https://blog.openreplay.com/ajax-battle-xmlhttprequest-vs-fetch/) - Article 127 | 128 | --- 129 | 130 | ### **JavaScript Classes** 131 | 132 | - [JavaScript Classes](https://javascript.info/classes) - Article 133 | - [Understanding JavaScript Classes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes) - Article 134 | - [OOP in JavaScript](https://youtu.be/PFmuCDHHpwk?si=pSxL0KJg0fH48Obu) - Youtube Video 135 | 136 | --- 137 | 138 | ### **Iterators and Generators** 139 | 140 | - [Introduction to Iterators](https://www.codeguage.com/courses/advanced-js/iteration-introduction) - Article 141 | - [Detailed Discussion on Iterators](https://www.codeguage.com/courses/advanced-js/iteration-iterators) - Article 142 | - [What Exactly Are Generators?](https://www.codeguage.com/courses/advanced-js/iteration-generators) - Article 143 | 144 | --- 145 | 146 | ### **Modules** 147 | 148 | - [Introduction to Modules](https://javascript.info/modules-intro) - Article 149 | - [Export and Import in JavaScript](https://javascript.info/import-export) - Article 150 | - [Dynamic Imports](https://javascript.info/modules-dynamic-imports) - Article 151 | 152 | --- 153 | 154 | ### **Memory Management** 155 | 156 | - [JavaScript Garbage Collection](https://javascript.info/garbage-collection) - Article 157 | - [Memory Management in JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_management) - Article 158 | 159 | --- 160 | 161 | ## **🎯 Mission** 162 | 163 | This project was created with the goal of providing a central resource for JavaScript learners and professionals alike. By gathering high-quality literature, we hope to simplify the journey of learning JavaScript and make it accessible to a broader audience. 164 | 165 | --- 166 | 167 | ## **🤝 Contributing** 168 | 169 | We welcome contributions! Feel free to suggest new resources by opening a pull request. Our aim is to make this collection as comprehensive and helpful as possible for JavaScript enthusiasts at all levels. 170 | 171 | --- 172 | 173 | ## **🙏 Acknowledgments** 174 | 175 | Thanks to all contributors and the JavaScript community for sharing and recommending these resources. Your input helps keep this collection up-to-date and valuable for learners worldwide. 176 | 177 | --- 178 | 179 | ## **📜 License** 180 | 181 | This project is licensed under the **CC0 1.0 License**, making it free to use, distribute, and modify. 182 | --------------------------------------------------------------------------------