-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile structure
More file actions
56 lines (56 loc) · 1.58 KB
/
file structure
File metadata and controls
56 lines (56 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
📦 full-javascript-course
┣ 📜 README.md
┣ 📜 LICENSE
┣ 📜 .gitignore
┣ 📜 package.json (If you plan to use npm)
┣ 📜 index.js (Entry file)
┣ 📂 01_Basics
┃ ┣ 📜 variables.js
┃ ┣ 📜 let_var_const.js
┃ ┣ 📜 operators.js
┃ ┣ 📜 comparison.js
┃ ┣ 📜 ternary.js
┃ ┣ 📜 switch.js
┃ ┣ 📜 string_methods.js
┃ ┣ 📜 random_numbers.js
┃ ┗ 📜 parseInt.js
┣ 📂 02_Functions
┃ ┣ 📜 functions.js
┃ ┣ 📜 arrow_functions.js
┃ ┣ 📜 default_params.js
┃ ┗ 📜 callbacks.js
┣ 📂 03_Objects_and_Arrays
┃ ┣ 📜 objects.js
┃ ┣ 📜 arrays.js
┃ ┣ 📜 array_methods.js
┃ ┣ 📜 destructuring.js
┃ ┗ 📜 advanced_operators.js
┣ 📂 04_Loops_and_Control_Flow
┃ ┣ 📜 loops.js
┃ ┣ 📜 while_for_loop.js
┃ ┣ 📜 break_continue.js
┃ ┗ 📜 recursion.js
┣ 📂 05_Classes_and_OOP
┃ ┣ 📜 classes.js
┃ ┣ 📜 getters_setters.js
┃ ┣ 📜 inheritance.js
┃ ┗ 📜 encapsulation.js
┣ 📂 06_Modern_JS
┃ ┣ 📜 promises.js
┃ ┣ 📜 async_await.js
┃ ┣ 📜 fetch_api.js
┃ ┗ 📜 modules.js
┣ 📂 07_Projects
┃ ┣ 📂 mini_projects
┃ ┃ ┣ 📜 todo_list.js
┃ ┃ ┣ 📜 calculator.js
┃ ┃ ┗ 📜 stopwatch.js
┃ ┣ 📂 advanced_projects
┃ ┃ ┣ 📜 weather_app.js
┃ ┃ ┣ 📜 notes_app.js
┃ ┃ ┗ 📜 quiz_app.js
┗ 📂 08_Documentation
┃ ┣ 📜 glossary.md
┃ ┣ 📜 best_practices.md
┃ ┣ 📜 debugging_tips.md
┃ ┗ 📜 common_errors.md