https://github.com/arturbomtempo-dev/javascript-youtube-course
This repository contains all source code and examples from the complete JavaScript course available on YouTube.
https://github.com/arturbomtempo-dev/javascript-youtube-course
ajax css dom dom-manipulation fetch-api front-end html javascript programming-language programming-logic vanilla-javascript web
Last synced: 6 months ago
JSON representation
This repository contains all source code and examples from the complete JavaScript course available on YouTube.
- Host: GitHub
- URL: https://github.com/arturbomtempo-dev/javascript-youtube-course
- Owner: arturbomtempo-dev
- License: mit
- Created: 2025-07-07T03:06:47.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-07-21T15:30:17.000Z (7 months ago)
- Last Synced: 2025-07-21T16:45:12.845Z (7 months ago)
- Topics: ajax, css, dom, dom-manipulation, fetch-api, front-end, html, javascript, programming-language, programming-logic, vanilla-javascript, web
- Language: JavaScript
- Homepage:
- Size: 600 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.en.md
- License: LICENSE.md
- Citation: CITATION.cff
- Roadmap: roadmap/README.md
Awesome Lists containing this project
README
JavaScript Course
This repository was created to store and organize all materials used in the complete JavaScript course published on YouTube. It brings together practical examples, exercises, code snippets, and projects developed throughout the lessons, covering everything from the basics of programming logic to advanced topics such as DOM manipulation, Fetch API, async/await, localStorage, and more. The content is structured in a didactic way to facilitate learning and help both beginners and those looking to reinforce their JavaScript knowledge.
---
## ๐ Table of Contents
- [About](#about)
- [Table of Contents](#table-of-contents)
- [What You'll Find in This Repository](#features)
- [Setup and Running the Examples](#setup-and-run-the-application)
- [Technologies](#technologies)
- [Author](#author)
- [License](#license)
## ๐ What You'll Find in This Repository
- [x] Step-by-step code examples explained in the course lessons
- [x] Practice exercises to reinforce the concepts learned
- [x] Source code for the projects developed throughout the course
## ๐ Setup and Running the Examples
### โ๏ธ Prerequisites
The examples in this course use **vanilla JavaScript**, often together with **HTML**, without requiring external libraries or servers. You can run them in several ways, including directly in your browser.
While not mandatory, it is recommended that you have:
- A **modern web browser** (Google Chrome, Firefox, Edge, etc.)
- A code editor such as [Visual Studio Code](https://code.visualstudio.com/)
- Optionally, an extension like **Live Server** to easily run HTML files locally
---
### ๐ How to Run the Code
#### โ
Option 1: Run Directly in the Browser (No Installation Needed)
1. **Open your browser**
2. Press **F12** (Windows) or **Cmd + Option + I** (Mac) to open the developer tools
3. Go to the **Console** tab
4. Type (or paste) your JavaScript code and press **Enter**
> This option is ideal for testing simple examples, such as variables, functions, operators, and control structures.
---
#### โ
Option 2: Create an HTML File Linked to a JS File
1. Create a folder and inside it, add two files:
- `index.html`
- `script.js`
2. In `index.html`, add:
```html
My JS Project
Hello, JavaScript!
```
3. In `script.js`, write your JavaScript code as usual:
```js
console.log('Hello, world!');
```
4. Open `index.html` in your browser (double-click it or use a server like Live Server)
#### โ
Option 3: Use an Online Editor
You can also use online platforms to test your code without installing anything:
- [JSFiddle](https://jsfiddle.net/)
- [CodePen](https://codepen.io/)
- [PlayCode](https://playcode.io/)
- [Replit](https://replit.com/)
These tools let you write **HTML**, **CSS**, and **JavaScript** and see the results in real time, making them ideal for practicing the course examples.
## ๐ป Technologies
The following languages and technologies were used in the development of the examples and projects in this course:
- [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML): Markup language used to structure web page content.
- [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS): Style language responsible for the appearance and layout of web pages, making them visually appealing and responsive.
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript): Programming language that adds interactivity and logic to web pages, serving as the foundation for the course's examples and projects.
## ๐จ๐ปโ๐ป Author
---
| [
Artur Bomtempo](https://arturbomtempo.dev/) |
| :--------------------------------------------------------------------------------------------------------------------------------------------------: |
Developed by Artur Bomtempo ๐๐ป. Get in touch:
[](mailto:arturbcolen@gmail.com)
[](https://www.linkedin.com/in/artur-bomtempo/)
[](https://www.instagram.com/arturbomtempo.dev/)
## ๐ License
MIT License
Copyright (c) 2025 Artur Bomtempo Colen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.