-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (120 loc) · 2.99 KB
/
index.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="img/zuehlke_logo.jpg">
<link rel="stylesheet" href="css/theme/zuehlke-index.css">
<title>JavaScript Advanced</title>
</head>
<body>
<header>
<h1>JavaScript Advanced</h1>
<h2>
<span class="nowrap">Florin Senoner</span>,
<span class="nowrap">Patrick Walther</span>,
<span class="nowrap">Nicholas Payne</span>,
<span class="nowrap">Simon Müller</span>,
<span class="nowrap">Stefan Reichhart</span>
</h2>
</header>
<section>
<a href="slides/01_Intro.html" target="_blank">
<h2>01 Intro</h2>
<ul>
<li>Agenda</li>
<li>Expectations & Goals</li>
<li>JavaScript Basics & Ecosystem</li>
</ul>
</a>
</section>
<section>
<a href="slides/02_Functional_Programming.html" target="_blank">
<h2>02 Functional Programming</h2>
<ul>
<li>Basics</li>
<li>Higher Order Functions</li>
<li>Pure Functions</li>
<li>Exercises</li>
</ul>
</a>
</section>
<section>
<a href="slides/03_Array_Functions.html" target="_blank">
<h2>03 Array Functions</h2>
<ul>
<li>Basics</li>
<li>Exercises</li>
</ul>
</a>
</section>
<section>
<a href="slides/04_Latest_Features.html" target="_blank">
<h2>04 Latest Features</h2>
<ul>
<li>Spread Operators</li>
<li>Async Functions</li>
<li>String API</li>
<li>Exercises</li>
</ul>
</a>
</section>
<section>
<a href="slides/05_Reactive.html" target="_blank">
<h2>05 Reactive</h2>
<ul>
<li>Setters</li>
<li>Callbacks</li>
<li>Observables</li>
</ul>
</a>
</section>
<section>
<a href="slides/06_Immutability.html" target="_blank">
<h2>06 Immutability</h2>
<ul>
<li>Mutable State</li>
<li>Concurrency</li>
<li>Exercises</li>
</ul>
</a>
</section>
<section>
<a href="slides/07_Redux.html" target="_blank">
<h2>07 Redux</h2>
<ul>
<li>Concepts</li>
<li>Write your own</li>
<li>Pain & Gains</li>
</ul>
</a>
</section>
<section>
<a href="slides/08_es_next.html" target="_blank">
<h2>08 ES.Next</h2>
<ul>
<li>Native Observables</li>
<li>Operators</li>
<li>Numerics</li>
</ul>
</a>
</section>
<section>
<a href="slides/09_outro.html" target="_blank">
<h2>09 Feedback</h2>
</a>
</section>
<section>
</section>
<section>
<a href="slides/follow.html" target="_blank">
<h2>Follow</h2>
</a>
</section>
<section>
<a href="slides/cheatsheet.html" target="_blank">
<h2>Cheatsheet</h2>
</a>
</section>
</body>
</html>