-
Notifications
You must be signed in to change notification settings - Fork 0
/
2023-12-15-react-typescript.html
4677 lines (4065 loc) · 161 KB
/
2023-12-15-react-typescript.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>React Training</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"
/>
<link rel="stylesheet" href="slides/revealjs/reveal.js/dist/reset.css" />
<link rel="stylesheet" href="slides/revealjs/reveal.js/dist/reveal.css" />
<link rel="stylesheet" href="slides/revealjs/reveal.js/dist/theme/solarized.css" />
<!-- Theme used for syntax hislides/ghlighted code -->
<link rel="stylesheet" href="slides/revealjs/highlight-js-github-theme.css" />
<link rel="stylesheet" href="slides/revealjs/styles.css" />
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-state="title">
<h2 class="title" style="font-size: 7rem">
<b>React & TypeScript Workshop</b>
</h2>
<h4>
<span class="transparent-bg">
<a href="https://nilshartmann.net" target="_blank">Nils Hartmann</a>
|
<a href="https://twitter.com/nilshartmann" target="_blank">@nilshartmann</a>
</span>
</h4>
<p style="margin-top: 4rem"></p>
<div>
<h3><span class="transparent-bg">Slides</span></h3>
<p>
<span class="transparent-bg">Lokal: 2023-12-15-react-typescript.html</span>
</p>
<p>
<span class="transparent-bg"
>Remote:
<a
href="https://nilshartmann.github.io/react18-training/2023-12-15-react-typescript.html"
>https://nilshartmann.github.io/react18-training/2023-12-15-react-typescript.html</a
></span
>
</p>
</div>
</section>
<section>
<h2>Nils Hartmann</h2>
<p style="margin-top: 2rem">
<a href="https://nilshartmann.net" target="_blank">https://nilshartmann.net</a>
/
<a href="https://twitter.com/nilshartmann" target="_blank">@nilshartmann</a>
</p>
<p style="margin-top: 2rem">
<em>Freiberuflicher Software-Entwickler, Berater und Trainer aus Hamburg</em>
</p>
<p></p>
<p style="margin-top: 5rem">Java | JavaScript, TypeScript | React | GraphQL</p>
<div style="display: flex; justify-content: center; margin-top: 2rem">
<div style="margin-left: 15px">
<a href="https://graphql.schule/video-kurs"
><img
style="max-height: 450px"
src="slides/images/screenshot-graphql-kurs.png"
/><br />https://graphql.schule/video-kurs</a
>
<br />
</div>
<!-- -->
<div style="margin-left: 100px">
<a href="https://reactbuch.de"
><img
style="max-height: 450px"
src="slides/images/react-buch-v2.jpg"
/><br />https://reactbuch.de</a
>
<br />
</div>
</div>
</section>
<section>
<h2>Und ihr?</h2>
<ul>
<li>Stellt euch doch bitte kurz vor...</li>
<li>
Eure Vorkenntnisse in <b>JavaScript</b>, <b>TypeScript</b>, <b>React</b>, anderen
Web-Frameworks und/oder Programmiersprachen?
</li>
<li>Wünsche für diese Schulung? Besondere Themen oder Interessen?</li>
</ul>
</section>
<!-- ============================================================================= -->
<section>
<h2>Grundsätzliches</h2>
<p><b>Jederzeit:</b> Fragen und Diskussionen!</p>
<p class="fragment">Motto: Es gibt keine dummen Fragen!</p>
<p class="fragment">
Bemerkbar machen per Audio, Chat oder Zoom Reaktion "Hand erheben"
<span class="fragment"
><img width="50%" src="slides/images/zoom-reaktionen.png"
/></span>
</p>
<p class="fragment">Bonuspunkte für eingeschaltetes Video 🥰</p>
<p class="fragment">
Ich zeige viel direkt im Editor, aber ihr könnt die Slides als Referenz benutzen
</p>
<p class="fragment">
Wir machen zwischendurch Übungen, in denen ihr selbst programmieren könnt
</p>
</section>
<section data-markdown>
<textarea data-template>
### Zeitplan
* Fr., 15 Dezember: [JavaScript Grundlagen](#/t-javascript)
* Mo./Di., 18./19. Dezember: [React](#/t-react)
* Danach: 🎄 🎅 🤶
* TypeScript machen wir im React-Teil
* Alles, was wir mit JavaScript lernen, brauchen wir auch mit/für TypeScript!
* Jeweils 9 Uhr bis 16.00 Uhr
* Kürzere Pausen zwischendurch ☕️ 😴
</textarea>
</section>
<section id="t-javascript">
<h1>JavaScript</h1>
</section>
<section>
<h3>JavaScript: Die Sprache</h3>
<p>
⚠️ <em
>JavaScript wurde in nur
<a
href="https://thenewstack.io/brendan-eich-on-creating-javascript-in-10-days-and-what-hed-do-differently-today/"
>zehn Tagen</a
></em
> erschaffen! 👷
</p>
<pre><code class="javascript">
// let creates a variable
let x = "Hallo"; // typeof x === "string"
</code></pre>
<pre class="fragment"><code class="javascript">
// dynamic typing (vs static typing in C#, java, ...)
x = 7; // typeof x === "number"
x = false; // typeof x === "boolean"
x = function() { return "Hallo" } // typeof x === "function"
x.toUpperCase(); // Ouch 😱
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Control flow</h3>
<p>Ähnlich wie C#/Java</p>
<p>if / else</p>
<p>switch / case / default</p>
<p>while / do</p>
<p>break / continue</p>
<p>try / catch</p>
<p>Semikolon optional</p>
<p>
<a
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Control_flow_and_error_handling"
>Referenz</a
>
</p>
</section>
<!-- ============================================================================= -->
<section>
<h3>Variablen: let und const</h3>
<pre class="fragment"><code class="javascript">
// Variable
let alter = 42;
alter = 43; // OK
</code></pre>
<pre class="fragment"><code class="javascript">
// Konstante
const name = "Susi";
name = "Klaus"; // TypeError: invalid assignment to const 'name'
</code></pre>
<p class="fragment">Das veraltete <code>var</code> bitte <b>nicht mehr verwenden</b>!</p>
</section>
<!-- ============================================================================= -->
<section>
<h3>Operatoren</h3>
<pre><code class="javascript">
// === (triple equal operator) OHNE implizite Typ-Konvertierung
if (42 === 42) {
console.log("of course"); // of course
}
if ("3" === 3) {
console.log("makes sense"); //
}
if ("" === false) {
console.log("hmm..."); //
}
</code></pre>
<pre class="fragment"><code class="javascript">
// == (double equal operator) mit impliziter Typ-Konvertierung
// ("coercion")
if (42 == 42) {
console.log("of course"); // of course
}
if ("3" == 3) {
console.log("makes sense"); // makes sense
}
if ("" == false) {
console.log("hmm..."); // hmm...
}
</code></pre>
<p class="fragment"><b>Empfehlung</b>: immer triple-equal-operator verwenden!</p>
<p class="fragment">
Mehr Spaß mit type coercion:
<a href="https://github.com/denysdovhan/wtfjs">WTF JS</a>
</p>
</section>
<!-- ============================================================================= -->
<section>
<h3>JavaScript: Datatypes</h3>
<pre><code class="javascript">
// typeof liefert den Typ einer Variable als String zurück
console.log(typeof 123); // "number"
</code></pre>
<p>boolean, null, undefined, number, string, symbol, bigint</p>
<pre class="fragment"><code class="javascript">
const check = true; // typeof check === "boolean"
if (check) {
console.log("jupp!");
}
</code></pre>
<pre class="fragment"><code class="javascript">
const age = 32; // typeof age === "number"
if (age < 16) {
console.log("No Beer, sorry!")
}
</code></pre>
<pre class="fragment"><code class="javascript">
const name = "Klaus"; // typeof name === "string"
if (name === "Klaus") {
console.log("Hello, Klaus!");
}
</code></pre>
<pre class="fragment"><code class="javascript">
let value;
typeof value === "undefined"
value = null;
typeof value !== "undefined"
typeof value === "???"
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Template Strings</h3>
<pre class="fragment"><code class="javascript">
const name = "Susi";
// Template String (with ``)
const greet = `Hello, ${name}`; // Hello, Susi
const loudGreet = `Hello, ${name.toUpperCase()}` // Hello, SUSI
// Zeilenumbrüche bleiben erhalten:
const letter = `Hello, ${name},
thanks for subscribing to our e-mail newsletter.
Yours, Edgar`;
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Funktionen</h3>
<pre><code class="javascript">
function greet(msg) {
return "Hello, " + msg;
}
greet("World"); // Hello, World
greet(null), // Hello, null
greet(); // Hello, undefined
</code></pre>
<pre class="fragment"><code class="javascript">
// Funktionen sind "1st-class-citizens":
function greet(msg) { ... }
// ...und können z.B. einer Variablen zugeordnet werden
const greetSomeone = greet;
greetSomeone("World"); // Hello, World
</code></pre>
<pre class="fragment"><code class="javascript">
// Funktionen können als Parameter übergeben werden
function printer(getMessageFn) {
console.log(getMessageFn())
}
// "inline" Funktion
printer(function() { return "Hello, World"} );
function helloWorld() { return "Hello, World" };
printer(helloWorld);
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Funktionen: Parameter</h3>
<pre class="fragment"><code class="javascript">
function add(value, inc = 1) { ... }
</code></pre>
<p class="fragment">
Der Default-Parameter greift immer, wenn für den Parameter
<code>undefined</code> übergeben wurde:
</p>
<pre class="fragment"><code class="javascript">
add(1); // entspricht: add(1,1)
</code></pre>
<pre class="fragment"><code class="javascript">
add(1,undefined); // entspricht: add(1,1)
</code></pre>
<pre class="fragment"><code class="javascript">
add(1,2); // entspricht: add(1,2);
</code></pre>
<pre class="fragment"><code class="javascript">
add(1, null); // entspricht; add(1, null);
</code></pre>
<pre class="fragment"><code class="javascript">
add(); // entspricht: add(undefined, 1);
</code></pre>
<p class="fragment">
Mehrere Default-Parameter: danach dürfen keine nicht-Default-Parameter kommen!
</p>
<pre class="fragment"><code class="javascript">
function add(value, inc = 1) { ... } // ok
function add(value = 0, inc = 1) { ... } // ok
function add(value = 0, inc) { ... } // FEHLER
</code></pre>
</section>
<section>
<h3>Rest-Parameter</h3>
<p class="fragment">
<a
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters"
>Rest-Parameter</a
>
nehmen alle verbleibenen, übergebenen Parameter auf
</p>
<pre class="fragment"><code class="javascript">
function greet(phrase, ...names) {
// ...
}
greet("Hello", "World", "Peter", "Susi");
// phrase ist "Hello",
// names ist ein Array mit "World", "Peter", "Susi"
</code></pre>
<pre class="fragment"><code class="javascript">
function say(...words) {
// ...
}
say("One", "Two");
// words ist ein Array mit allen Parametern ("One", "Two")
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Funktionen</h3>
<p>Achtung, return-Anweisung: Ergebnis direkt hinter return schreiben:</p>
<pre class="fragment"><code class="javascript">
function hello() {
return "Hello";
}
const h = hello(); // "Hello"
</code></pre>
<pre class="fragment"><code class="javascript">
function goodbye() {
return
"Goodbye"; // oh no 😢!
}
const g = goodbye(); // undefined
</code></pre>
<pre class="fragment"><code class="javascript">
// oder:
function hello() {
return (
"Hello"
);
}
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h2>Übung: Strings und Funktionen</h2>
<p>
<em>Mache dich mit den JavaScript-Grundlagen vertraut</em>
</p>
<p class="fragment">
Die Beschreibung der Übung findest Du in
<b><code>js-intro/01_basic/index.js</code></b
>. Darin kannst Du auch deinen Code schreiben.
</p>
<p class="fragment">
Du kannst
<b><code>js-intro/01_basic/index.html</code></b> in deinem Browser öffnen. Diese Datei
führt die <b><code>index.js</code></b
>-Datei dann aus.
</p>
<p class="fragment">
Ausgaben auf der Browser-Konsole, nach dem Ändern von <code>index.js</code>, die Seite
im Browser neu laden
</p>
<p class="fragment">Bei Fragen oder Problemen, kannst Du dich jederzeit melden</p>
<p class="fragment">
Wenn alle Stricke reißen, findest Du eine mögliche Lösung in:
<code>js-intro/01_basic/solution/index.js</code>
</p>
<p class="fragment">Wenn Du fertig bist, bitte "Hand heben" in Zoom 🙋♀️</p>
</section>
<!-- ============================================================================= -->
<section>
<h3>Pfeilfunktionen (Arrow Functions)</h3>
<p>In vielen Fällen "nur" andere Schreibweise als <code>function</code></p>
<pre><code class="javascript">
const greet = (msg) => {
return "Hello, " + msg;
}
</code></pre>
<pre class="fragment"><code class="javascript">
// Bei genau einem Parameter kann die Klammer weggelassen werden:
const greet = msg => { return "Hello, " + msg }
</code></pre>
<pre class="fragment"><code class="javascript">
// Bei keinem oder mehr als einem Parameter muss die Klammer gesetzt werden:
const greet = (phrase, msg) => { return phrase + msg }
const greetWorld = () => { return "Hello, World" };
</code></pre>
<pre class="fragment"><code class="javascript">
// bei genau einem Ausdruck, können geschweifte Klammern weggelassen werden:
// Ergebnis des Ausdrucks dann der Rückabgewert der Funktion:
const greet = msg => "Hello, " + msg;
</code></pre>
<pre class="fragment"><code class="javascript">
// Verhalten wie "normale Funktion"
greet("World"); // Hello, World
greet(null), // Hello, null
greet(); // Hello, undefined
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>JavaScript: Arrays</h3>
<pre><code class="javascript">
const empty = [];
const dinge = [ "a", 123, { name: "Klaus"}, false];
</code></pre>
<pre class="fragment"><code class="javascript">
// Ein bestehendes Array um neue Einträge erweitern
const abc = ["a", "b", "c"];
abc.push("d", "e"); // ["a", "b", "c", "d", "e"];
abc[4]; // e
abc.length // 5
</code></pre>
<pre class="fragment"><code class="javascript">
// Ein bestehende Array Kopieren und die Kopie erweitern
const three = [1, 2, 3];
const five = three.concat(4, 5)
// three !== five
</code></pre>
</section>
<section>
<h3>JavaScript: Arrays</h3>
<pre><code class="javascript">
const fruits = ["apple", "orange"];
</code></pre>
<pre class="fragment"><code class="javascript">
// Iterieren
for (const f of fruits) {
console.log(f);
}
// "apple"
// "orange"
fruits.forEach(f => console.log(f));
// "apple"
// "orange"
</code></pre>
<pre class="fragment"><code class="javascript">
// Transformieren ("map") eines Arrays
const bigFruits = fruits.map(v => v.toUpperCase());
// ["APPLE", "ORANGE"]
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Objekt</h3>
<p>Objekte werden als Literal in Form von Key-Value-Paaren geschrieben:</p>
<pre><code class="javascript">
const firstname = "Klaus";
const person = {
firstname: firstname,
hobby: "Singing",
age: 32
}
console.log(typeof person); // "object"
</code></pre>
<pre class="fragment"><code class="javascript">
// Auf Properties zugreifen
person.firstname // Klaus
</code></pre>
<pre class="fragment"><code class="javascript">
// Werte zuweisen
person.firstname = "Susi"
person.firstname // Susi
</code></pre>
<pre class="fragment"><code class="javascript">
// Neues Property hinzufügen
person.livesIn = "Hamburg"
// Property entfernen
delete person.livesIn;
// Zugriff auf nicht vorhandenes Property
person.livesIn // undefined
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Objekte #2</h3>
<p class="fragment">Object "Shorthand Notation"</p>
<pre class="fragment"><code class="javascript">
const firstname = "Klaus";
const person = {
firstname,
hobby: "Singing",
age: 32
}
</code></pre>
<p class="fragment">Erinnerung: Nur Referenzen sind konstant!</p>
<pre class="fragment"><code class="javascript">
// Nur Referenzen sind konstant
const person = {
name: "Susi"
}
person = "Klaus"; // TypeError: invalid assignment to const 'person'
person.name = "Klaus" // OK
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h2>Übung: Arrays, Objekte und Funktionen</h2>
<p class="fragment">
Die Beschreibung der Übung findest Du in
<b><code>js-intro/02_objects_and_arrays/index.js</code></b
>. Darin kannst Du auch deinen Code schreiben.
</p>
<p class="fragment">
Du kannst
<b><code>js-intro/02_objects_and_arrays/index.html</code></b> in deinem Browser öffnen.
Diese Datei führt die <b><code>index.js</code></b
>-Datei dann aus.
</p>
<p class="fragment">
Ausgaben auf der Browser-Konsole, nach dem Ändern von <code>index.js</code>, die Seite
im Browser neu laden
</p>
<p class="fragment">Bei Fragen oder Problemen, kannst Du dich jederzeit melden</p>
<p class="fragment">
Wenn alle Stricke reißen, findest Du eine mögliche Lösung in:
<code>js-intro/02_objects_and_arrays/solution/index.js</code>
</p>
<p class="fragment">Wenn Du fertig bist, bitte "Hand heben" in Zoom 🙋♀️</p>
</section>
<section>
<h3>Mehr zu Objekten</h3>
<pre class="fragment"><code class="javascript">
// Zugriff via Index Notation
person["first name"]; // Klaus
const what = "first name";
person[what]; // Klaus
person[what] = "Susi";
person["first name"]; // Susi
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Objekte und Funktionen</h3>
<p>Objekte können Funktionen enthalten</p>
<pre><code class="javascript">
const person = {
firstname: "Susi",
sayHello() { return "Hello, " + this.firstname},
}
person.sayHello() // Hello, Susi
</code></pre>
<!-- <p class="fragment">Warnung vor "this"!</p>
<pre class="fragment"><code class="javascript">
const klaus = {
firstname: "Klaus",
sayHello: person.sayHello
};
klaus.sayHello() // 🤔
</code></pre>
<pre class="fragment"><code class="javascript">
klaus.sayHello() // Hello, Klaus 😊
</code></pre>
<pre class="fragment"><code class="javascript">
const sayHelloToSusi = person.sayHello;
sayHelloToSusi(); // 🤔
</code></pre>
<pre class="fragment"><code class="javascript">
const sayHelloToSusi = person.sayHello;
sayHelloToSusi(); // Hello, undefined 🤪
</code></pre> -->
</section>
<!-- ============================================================================= -->
<section>
<h3>Objekte und Pfeilfunktionen</h3>
<p class="fragment">
Pfeilfunktionen eignen sich <b>nicht</b> für Methoden (also für Funktionen an Objekten):
</p>
<pre class="fragment"><code class="javascript">
const person = {
firstname: "Susi",
sayHello: () => { return "Hello, " + this.firstname }
}
person.sayHello(); Hello, undefined 🤪
</code></pre>
<p class="fragment">(Funktionen an Objekten haben kein "this")</p>
</section>
<!-- ============================================================================= -->
<!-- ============================================================================= -->
<section>
<h3>Destructuring</h3>
<p>
Mit dem
<a
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment"
>object destructuring</a
>
Operator kannst Du Werte in einem Objekt an lokale Variablen zuweisen:
</p>
<pre><code class="javascript">
// Ein Objekt...
const person = {
firstname: "Susi",
lastname: "Meier",
age: 32
};
</code></pre>
<pre class="fragment"><code class="javascript">
// Zugriff auf Properties (herkömmlich)
const firstname = person.firstname; // Susi
const age = person.age; // 32
const hobby = person.hobby; // undefined
</code></pre>
<pre class="fragment"><code class="javascript">
// Zugriff auf Properties (Destrukturierung)
const { firstname, age, hobby } = person;
console.log(firstname); // Susi
console.log(age); // 32
console.log(hobby); // undefined
</code></pre>
</section>
<section>
<h3>Destructuring #2</h3>
<p class="fragment"><em>Default Werte</em>:</p>
<pre class="fragment"><code class="javascript">
const person = {
firstname: "Susi",
age: 32
};
const { city = "Bonn" } = person;
console.log(city); // Bonn
</code></pre>
</section>
<section>
<h3>Destructuring #3</h3>
<p>Funktionsparameter, die ein Objekt sind, können destrukturiert werden:</p>
<pre><code class="javascript">
// Herkömmlich
function printPerson(person) {
console.log(`${person.firstname} is ${person.age} years old`);
}
printPerson({ firstname: "Susi", age: 32 });
</code></pre>
<p class="fragment">Alternative mit Destrukturierung:</p>
<pre class="fragment"><code class="javascript">
function printPerson({firstname, age}) {
console.log(`${firstname} is ${age} years old`);
}
printPerson({ firstname: "Susi", age: 32 });
</code></pre>
</section>
<section>
<h3>Destructuring #3</h3>
<p>Mit Default-Wert</p>
<pre><code class="javascript">
function printPerson({name, age, city="Bonn"}) {
console.log(`${name}, ${age} years, lives in ${city}`);
}
</code></pre>
<p class="fragment">🤔 Was wird hier ausgegeben? 🤔</p>
<pre class="fragment"><code class="javascript">
printPerson({name: "susi", age: 32});
</code></pre>
<pre class="fragment"><code class="javascript">
printPerson({name: "susi", age: 32, city: "Freiburg"});
</code></pre>
<pre class="fragment"><code class="javascript">
printPerson({name: "susi", age: 32, city: null});
</code></pre>
<pre class="fragment"><code class="javascript">
printPerson({name: "susi", age: 32, city: undefined});
</code></pre>
<pre class="fragment"><code class="javascript">
printPerson();
</code></pre>
</section>
<section>
<h3>Object Spread Operator</h3>
<p>
Mit dem
<a
href="https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Operators/Spread_syntax"
>Spread Operator</a
>
können alle Felder eines Objektes an eine andere Stelle kopiert werden
</p>
<pre class="fragment"><code class="javascript">
const person = { firstname: "Susi", age: 32 }
</code></pre>
<pre class="fragment"><code class="javascript">
// Kopie erzeugen (herkömmlich)
const copy = { firstname: person.firstname, age: person.age }
// copy: { firstname: "Susi", age: 32}
</code></pre>
<pre class="fragment"><code class="javascript">
// Kopie erzeugen (Spread operator)
const copy = { ...person };
// copy: { firstname: "Susi", age: 32}
copy.age = 33;
person.age; // 32
</code></pre>
<pre class="fragment"><code class="javascript">
const person = { firstname: "Susi", age: 32 }
const employee = { ...person, salary: 695000 }
// employee: { firstname: "Susi", age: 32, salary: 695000 }
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Destructuring und Spread mit Arrays</h3>
<p>Beide Operatoren funktionieren auch mit Arrays:</p>
<pre class="fragment"><code class="javascript">
// Spread-Operator
const cities = ["Hamburg", "Bonn"];
const moreCities = [...cities, "Köln"];
</code></pre>
<pre class="fragment"><code class="javascript">
// Destructuring
const cities = ["Hamburg", "Bonn", "Köln"];
const [hamburg, bonn] = cities;
console.log(hamburg); // Hamburg
console.log(bonn); // Bonn
</code></pre>
</section>
<!-- ============================================================================= -->
<!-- ============================================================================= -->
<section>
<h3>Truthy und falsy</h3>
<p>
<b><a href="https://developer.mozilla.org/de/docs/Glossary/Falsy">falsy</a></b> ist ein
Wert, der <b>false</b> wird, wenn er (implizit oder explizit) in ein Boolean konvertiert
wird
</p>
<p>
<b><a href="https://developer.mozilla.org/de/docs/Glossary/Truthy">truthy</a></b> ist
ein Wert, der <b>true</b> wird, wenn er (implizit oder explizit) in ein Boolean
konvertiert wird (das sind alle Werte, die nicht falsy sind)
</p>
<pre><code class="javascript">
if (true) { console.log("I'm true") } // I'm true
if ("hello") { console.log("I'm true") } // I'm true
if (null) { console.log("I'm falsy") } //
if (undefined) { console.log("I'm falsy") } //
</code></pre>
<p class="fragment">Was ist mit diesen?</p>
<pre class="fragment"><code class="javascript">
if (0) { console.log("will this be shown?"); } // 🤔
</code></pre>
<pre class="fragment"><code class="javascript">
if ("") { console.log("will this be shown?"); } // 🤔
</code></pre>
<pre class="fragment"><code class="javascript">
if ([]) { console.log("will this be shown?"); } // 🤔
</code></pre>
<pre class="fragment"><code class="javascript">
if ({}) { console.log("will this be shown?"); } // 🤔
</code></pre>
</section>
<!-- ============================================================================= -->
<section>
<h3>Truthy und falsy #2</h3>
<p>Insbesondere mit <code>0</code> und Leerstring aufpassen:</p>
<pre class="fragment"><code class="javascript">
function add(a, b) {
if (!a || !b) {
throw new Error("Invalid Argument!");
}
return a + b;
}
</code></pre>
<pre class="fragment"><code class="javascript">
add(2, 1); // 3 👍
add(1, null); // "Invalid Argument" 👍
</code></pre>
<pre class="fragment"><code class="javascript">
add(1, 0); // "Invalid Argument" 🤦
</code></pre>
</section>
<section data-markdown>
<textarea data-template>
### Truthy und falsy #3
* Mit Default-Werten (Destructuring) und Default-Parametern (Funktionen) aufpassen
* Defaults werden nur verwendet, wenn der entsprechende Wert `undefined` ist
* `truthy` bzw. `falsy` spielen hier keine Rolle!
* ```javascript
const person = { firstname: null };
const { firstname = "Susi" } = person; // firstname: null!
```
* ```javascript
function sayHello(name = "Susi") { return "Hello, " + name }
sayHello(null); // Hello, null
```
</textarea
>
</section>
<!-- ============================================================================= -->
<section>
<h3>Beispiel: Immutability</h3>
<p>
In React wird sehr viel mit unveränderlichen ("immutable") Datenstrukturen gearbeitet
</p>
<p>
Dabei werden Objekte und Arrays nicht verändert. Änderungen finden immer nur auf Kopien
der Originale statt
</p>
<p><code>Array.map</code> bildet alle Einträge aus einem Array auf ein neues Array ab</p>
<pre class="fragment"><code class="javascript">
const persons = [
{ lastname: "Mueller", firstname: "Klaus", age: 32 },
{ lastname: "Meier", firstname: "Susi", age: 33 }
]