Skip to content

Commit 4136404

Browse files
committed
first commit
0 parents  commit 4136404

File tree

5 files changed

+92
-0
lines changed

5 files changed

+92
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>JavaScript Array Course</title>
7+
<link rel="stylesheet" href="style.css">
8+
<script src="./index.js" defer></script>
9+
</head>
10+
<body>
11+
<div class="container">
12+
<h1>JavaScript Array Course</h1>
13+
<p>Please open the Browser Console to see the output</p>
14+
</div>
15+
</body>
16+
</html>

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+

readme.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
## JavaScript Array Crash Course
2+
3+
- [x] Introduction
4+
- [x] What is an Array in JavaScript?
5+
- [x] How to Create an Array in JavaScript?
6+
- [x] How to Get Elements from an Array in JS?
7+
- [x] How to Add Elements to an Array in JS?
8+
- [x] How to Remove Elements from an Array in JS?
9+
- [x] How to Copy and Clone an Array in JS?
10+
- [x] How to Determine if a Value is an Array in JS?
11+
- [x] Array Destructuring in JavaScript
12+
- [x] How to Assign a Default Value to a Variable?
13+
- [x] How to Skip a Value in an Array?
14+
- [x] Nested Array Destructuring in JS
15+
- [x] How to Use the Rest Parameter in JS?
16+
- [x] How to Use the Spread Operator in JS?
17+
- [x] Destructuring Use Cases in JavaScript
18+
- [x] How to Swap Values with Destructuring?
19+
- [x] How to How to Merge Arrays?
20+
- [X] The length property
21+
- [ ] JavaScript Array Methods
22+
- [ ] How to Create, Remove, Update, and Access Arrays in JavaScript?
23+
- [ ] The concat() array method
24+
- [ ] The join() array method
25+
- [ ] The fill() array method
26+
- [ ] The includes() array method
27+
- [ ] The indexOf() array method
28+
- [ ] The reverse() array method
29+
- [ ] The sort() array method
30+
- [ ] The splice() array method
31+
- [ ] The at() Method
32+
- [ ] The copyWithin() Method
33+
- [ ] The flat() Method
34+
- [ ] Static Array Methods in JavaScript
35+
- [ ] The Array.from() array method
36+
- [ ] The Array.fromAsync() array method
37+
- [ ] The Array.of() array method
38+
- [ ] Array Iterator Methods in JavaScript
39+
- [ ] The filter() array method
40+
- [ ] The map() array method
41+
- [ ] The flatMap() array method
42+
- [ ] The reduce() array method
43+
- [ ] The reduceRight() array method
44+
- [ ] The some() array method
45+
- [ ] The find() array method
46+
- [ ] The findIndex() array method
47+
- [ ] The findLast() array method
48+
- [ ] The findLastIndex() array method
49+
- [ ] The forEach() array method
50+
- [ ] The every() array method
51+
- [ ] The entries() method
52+
- [ ] The value() method
53+
- [ ] Immutability
54+
- [ ] The toReversed() method
55+
- [ ] The toSorted() method
56+
- [ ] The toSpliced() method
57+
- [ ] The with() method

style.css

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
h1 {
2+
font-size: x-large;
3+
margin-bottom: 10px;
4+
}
5+
6+
p {
7+
font-size: medium;
8+
padding: 10px;
9+
background-color: #ebebeb;
10+
border-radius: 10px;
11+
}
12+
13+
.container {
14+
display: flex;
15+
flex-direction: column;
16+
}

0 commit comments

Comments
 (0)