An open API service indexing awesome lists of open source software.

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.

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.


Repository banner





Languages: JavaScript


Version: 1.0.0


Contributions: Welcome


License: MIT

---


๐Ÿ‡ง๐Ÿ‡ท Versรฃo em portuguรชs disponรญvel aqui



## ๐Ÿ“‹ 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:

[![Gmail Badge](https://img.shields.io/badge/-arturbcolen@gmail.com-D14836?style=flat-square&logo=Gmail&logoColor=white&link=mailto:arturbcolen@gmail.com)](mailto:arturbcolen@gmail.com)
[![LinkedIn Badge](https://img.shields.io/badge/-Artur%20Bomtempo-0A66C2?style=flat-square&logo=LinkedIn&logoColor=white&link=https://www.linkedin.com/in/artur-bomtempo/)](https://www.linkedin.com/in/artur-bomtempo/)
[![Instagram Badge](https://img.shields.io/badge/-@arturbomtempo.dev-E4405F?style=flat-square&logo=Instagram&logoColor=white&link=https://www.instagram.com/arturbomtempo.dev/)](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.