Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bakaqc/learn-js
This is the repository of my JS learning process with F8.
https://github.com/bakaqc/learn-js
javascript
Last synced: 1 day ago
JSON representation
This is the repository of my JS learning process with F8.
- Host: GitHub
- URL: https://github.com/bakaqc/learn-js
- Owner: bakaqc
- License: mit
- Created: 2024-04-28T08:52:07.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T02:20:20.000Z (6 months ago)
- Last Synced: 2024-07-21T03:25:57.977Z (6 months ago)
- Topics: javascript
- Language: JavaScript
- Homepage:
- Size: 67.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learn-JS
![GitHub contributors](https://img.shields.io/github/contributors/bakaqc/Learn-JS)
![GitHub top language](https://img.shields.io/github/languages/top/bakaqc/Learn-JS)
![GitHub repo size](https://img.shields.io/github/repo-size/bakaqc/Learn-JS)
![GitHub License](https://img.shields.io/github/license/bakaqc/Learn-JS)- This is the repository of my JS learning process with F8.
- Cre: [F8 Official](https://www.youtube.com/playlist?list=PL_-VfJajZj0VgpFpEVFzS5Z-lkXtBe-x5)## TechStack
## Table of Contents
- Day 1: [Click here!!!](Basic-JS/Day1/README.md)
- Day 2: [Click here!!!](Basic-JS/Day2/README.md)
- Day 3: [Click here!!!](Basic-JS/Day3/README.md)## How to Link JavaScript File in HTML?
JavaScript can be added to an HTML file in two ways:
1. **Internal JS:** We can add JavaScript directly to our HTML file by writing the code inside the `` tag. The `<script>` tag can either be placed inside the `<head>` or the `<body>` tag according to the requirement.
2. **External JS:** We can write JavaScript code in another files having an extension.js and then link this file inside the `<head>` tag of the HTML file in which we want to add this code.
**Syntax:**
```html
<script>
// JavaScript Code```
**Example:**
```html
Basic Example to Describe JavaScript
console.log("Hello! I'm Quoc Chuong");
```
**Output:** The output will display on the console.
```html
Hello! I'm Quoc Chuong
```## Contributors