Skip to content

Commit fecfb35

Browse files
Added JS txt file
1 parent 18b6c76 commit fecfb35

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

JavaScript RoadMap.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
- console.log
2+
- comments
3+
- escape sequences
4+
- 3 ways to declare variables
5+
- input (prompt only)
6+
- string concatenation
7+
- template literals
8+
- string methods
9+
- arithmetic operators + modulo
10+
- assignment operators
11+
- boolean
12+
- conditional if statement
13+
- comparison operator
14+
- logical operator
15+
- else if statement
16+
- nested if statement
17+
- expession + truthy and falsy values
18+
- inline comparison and logical operator
19+
- ternary operator
20+
- switch case statement
21+
- for loop
22+
- array CRUD methods (append, shift, etc...)
23+
- array iterate methods (map, forEach, etc...)
24+
- destructuring array
25+
- while loop
26+
- nested for + while loop or hybrid of both
27+
- math methods
28+
- functions (traditional and expression)
29+
- function arguments
30+
- encapsulation
31+
- error handling (try + except & then.catch.finally)
32+
- asynchrounous functions
33+
- IIFE
34+
- recursion and callstack
35+
- objects
36+
- object methods (entries, keys, values)
37+
- class + this bind

0 commit comments

Comments
 (0)