-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcurriculum_template.js
More file actions
46 lines (38 loc) · 830 Bytes
/
curriculum_template.js
File metadata and controls
46 lines (38 loc) · 830 Bytes
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
// 1.0 Intro
// -- What is JavaScript and how does it work?
// -- Install VSCode
// -- Install NodeJS
// 2.0 Node commands in terminal - (Ctrl + `) to open terminal
// -- Running a file
// -- Killing a file
// 3.0 Variables
// -- Hello world
// -- Console.log()
// -- Variables
// -- Code comments
// -- Assignment by reference
// 4.0 Data Types (init / read / write)
// -- Strings
// -- Numbers
// -- Arrays
// -- Objects
// -- Null
// -- Undefined
// -- Booleans (true/false)
// 5.0 Recap
// 6.0 Logic and Operators
// -- Operators (+ - / %)
// -- Logical operators (|| &&)
// -- Type of
// 7.0 Conditional Statements
// -- If else
// 8.0 Loops
// -- While loop
// -- For loop
// -- Continue & break
// 9.0 Functions
// -- Create a function
// -- Invoke a function
// -- Return
// -- Default inputs
// -- Arrow functions