-
Notifications
You must be signed in to change notification settings - Fork 0
/
class2.html
528 lines (418 loc) · 15.7 KB
/
class2.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="generator" content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39">
<meta charset="utf-8">
<title>Kapitel 2 - Techniker Javascript Einführung</title>
<meta name="description" content="Kapitel 2 - Techniker Javascript Einführung">
<meta name="author" content="yfitz">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/simple.css" id="theme">
<link rel="stylesheet" href="css/custom.css"><!-- For syntax highlighting -->
<!-- light editor -->
<link rel="stylesheet" href="lib/css/light.css"><!-- dark editor -->
<!--<link rel="stylesheet" href="lib/css/dark.css">
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="plugin/accessibility-helper/css/accessibility-helper.css">-->
<!--If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script><!-- If use the PDF print sheet so students can print slides-->
<link rel="stylesheet" href="css/print/pdf.css" type="text/css" media="print">
<link rel="icon" type="image/x-icon" href="favicon.ico"><!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Einführung in JavaScript</h2><img src="images/javascript.png" alt="Javascript Logo" class="noborder" style=
"max-height:400px;">
<h3>Kapitel 2</h3>
</section>
<section>
<h3>Aufgabe aus Kapitel 1</h3>
<pre>
<code class="html"><!DOCTYPE html>
<html>
<head>
<title>Aufgabe aus Kapitel 1</title>
</head>
<body>
<script>
var pre_tip;
var tip_prozent;
// Abfrage der Werte
pre_tip = prompt("Bitte Rechnungsbetrag eingeben");
tip_prozent = prompt("Bitte Prozent eingeben");
var billTip = pre_tip * (tip_prozent/100 + 1);
var receipt = "Komplete Rechnungsbetrag, einschliesslich <br>
Trinkgeld, ist " + billTip + "Euro";
document.write(receipt);
</script>
</body>
</html>
</code>
</pre>
</section>
<section>
<h3>Deklaration von Funktionen</h3>
<p>Um eine Funktion zu deklarieren schreibt man Code in<code>{}</code></p>
<pre>
<code class="javascript">function parrotFacts() {
console.log('Some parrot species can live for over 80 years');
console.log('Kakapos are a critically endangered flightless parrot');
}
</code>
</pre>
</section>
<section>
<h3>Argumente</h3>
<p>Funktionen akzeptieren Eingabewerte, sogenannte <code>Argumente</code>.</p>
<pre>
<code class="javascript">function callKitten(kittenName){
console.log('Come here, ' + kittenName + '!');
}
callKitten('Fluffy'); // outputs 'Come here, Fluffy!'
function addNumbers(a, b){
console.log(a + b);
}
addNumbers(5, 7); // outputs 12
addNumbers(9, 12); // outputs 21
</code>
</pre>
</section>
<section>
<h3>Rückgabewerte</h3>
<p>Werte, die beim Aufruf an die aufrufende Funktion zurückgegeben werden.</p>
<pre>
<code class="javascript">function square(num) {
return num * num;
}
console.log(square(4)); // outputs '16'
var squareOfFive = square(5); // squareOfFive equals '25'
</code>
</pre>
<p><code>return</code> beendet die Funktion augenblicklich.</p>
</section>
<section>
<h3>Global Scope</h3>
<p>Eine Variable, die ausserhalb von einer Funktion deklariert wurde:</p>
<pre>
<code class="javascript">var awesomeGroup = 'Girl Develop It'; // Global scope
function whatIsAwesome() {
console.log(awesomeGroup + ' is pretty awesome.'); // Will work
}
whatIsAwesome();
</code>
</pre>
<p>Auf diese Variable kann von überall zugegriffen werden.</p>
</section>
<section>
<h3>Local Scope</h3>
<p>Eine Variable, die in einer Funktion deklariert wurde:</p>
<pre>
<code class="javascript">function whatIsAwesome() {
var awesomeGroup = 'Girl Develop It'; // Local scope
console.log(awesomeGroup + ' is pretty awesome.'); // Will work
}
whatIsAwesome();
console.log(awesomeGroup + ' is pretty awesome.'); // Won't work
</code>
</pre>
<p>Auf diese Variable kann nur innerhalb der Funktion zugegriffen werden.</p>
</section>
<section>
<h3>Boolean Variablen</h3>
<p>Boolean Variablen sind die Werte <code>true</code> and <code>false</code></p>
<pre>
<code class="javascript">var catsAreBest = true;
var dogsRule = false;
</code>
</pre>
<p>Jeder Werte kann im boolean Kontext ausgewertet werden.</p>
<pre>
<code class="javascript">// Diese Variablen werden zu false ausgewertet
var myName = '';
var numOfKids = 0;
var isMarried; // Variable ohne Werte ist undefined</code>
</pre>
<p><code>null, NaN, undefined, 0, '' und ""</code> wird zu <code>false</code> ausgewertet. Siehe: <a href=
"https://developer.mozilla.org/en-US/docs/Glossary/Falsy">falsy</a><br>
Alles andere wird zu <code>true</code> ausgewertet.</p>
</section>
<section>
<h3>if Anweisung</h3>
<pre>
<code class="javascript">var age = 30;
if (age > 18) {
console.log('You are an adult');
}</code>
</pre>
<h3>if/else Anweisung</h3>
<pre>
<code class="javascript">var age = 30;
if (age >= 16) {
console.log('Yay, you can drive!');
} else {
console.log('Sorry, you have ' + (16 - age) +
' years until you can drive.');
}
</code>
</pre>
</section>
<section>
<h3>if/else statement</h3>
<p>Mehrere Alternativen mit <code>else if</code>.</p>
<pre>
<code class="javascript">var age = 30;
if (age >= 35) {
console.log('You can vote AND run for President!');
} else if (age >= 30) {
console.log('You can vote AND run for the Senate!');
} else if (age >= 18) {
console.log('You can vote!');
} else {
console.log('You can\'t vote, but you can write your representatives.');
}
</code>
</pre>
</section>
<section>
<h3>Vergleichs Operatoren</h3>
<table class="smalltext">
<thead>
<tr>
<th>Beispiel</th>
<th>Ergebnis</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>a == b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> gleich <code>b</code> (können unterschiedlichen Datentyp
haben).</td>
</tr>
<tr>
<td><code>a=== b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> identisch mit <code>b</code>, und gleichen Datentyp.</td>
</tr>
<tr>
<td><code>a != b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> ungleich <code>b</code> können unterschiedlichen Datentyp
haben).</td>
</tr>
<tr>
<td><code>a!== b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> nicht identisch zu <code>b</code>, oder nicht gleichen
Datentyps.</td>
</tr>
<tr>
<td><code>a < b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> ist kleiner als <code>b</code>.</td>
</tr>
<tr>
<td><code>a > b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> ist grösser als <code>b</code>.</td>
</tr>
<tr>
<td><code>a <= b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> kleiner oder gleich <code>b</code>.</td>
</tr>
<tr>
<td><code>a >= b</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> grösser oder gleich <code>b</code>.</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3>Logische Operatoren</h3>
<table class="smalltext">
<thead>
<tr>
<th>Beispiel</th>
<th>Ergebnis</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>a && b</code></td>
<td><strong><code>TRUE</code></strong> wenn beide <code>a</code> und <code>b</code>
<strong><code>TRUE</code></strong> sind.</td>
</tr>
<tr>
<td><code>a || b</code></td>
<td><strong><code>TRUE</code></strong> wenn entweder <code>a</code> oder <code>b</code>
<strong><code>TRUE</code></strong> ist.</td>
</tr>
<tr>
<td><code>!a</code></td>
<td><strong><code>TRUE</code></strong> wenn <code>a</code> nicht <strong><code>TRUE</code></strong> ist.</td>
</tr>
</tbody>
</table>
<pre>
<code class="javascript">var age = 30;
var yearsAsCitizen = 30;
if (age >=30 && yearsAsCitizen > 9) {
console.log('You can run for the Senate!');
} else {
console.log('You are not eligible to run for the Senate');
}</code>
</pre>
</section>
<section>
<h3>Schleifen</h3>
<p>while statement</p>
<pre>
<code class="javascript">while (x < 5) {
console.log(x);
x++;
}
</code>
</pre>
<pre>
<code class="javascript">for (initialize; condition; update) {
// statements to repeat
}
</code>
</pre>
<p>Beispiel:</p>
<pre>
<code class="javascript">for (var i = 0; i < 5; i++) {
console.log(i);
}
</code>
</pre>
</section>
<section>
<h3>Break</h3>
<p>Aus der Schleife aussteigen <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/break">break</a></code> statement.</p>
<pre><code class="javascript">// Count from 100 to 200
for (var i = 100; i <= 200; i++) {
console.log('Testing ' + i);
//Stop at the first multiple of 7
if (i % 7 == 0) {
console.log('Found it! ' + i);
break;
}
}</code></pre>
</section>
<section>
<h3>Aufgabe</h3><br>
<ul>
<li>
<p>Schreibe eine Funktion mit dem Namen <code>"KreisF"</code>, welche als Argumente den Radius erhält und daraus als Rückgabewert die Fläche errechnet.</p>
</li>
<li>Verwende diese Funktion in einer HTML-Datei um solange den Radius als Eingabe abzufragen, bis die '0' eingeben wird. Zu jeder Eingabe wird die Kreisfläche ausgegeben.
<p>Ausgabe z.B: <code>Die Fläche des Kreises mit Radius 2 ist "12.566370614359172."</code></p>
</li>
<li>
<p> Siehe die Funktionen des Standardobjekts <a href="https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Math"> Math </a>
</li>
</ul>
</section><!-- Final slides-->
<section>
<h3>Referenzen</h3>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide" target="_blank">JavaScript Guide</a>, from the
Mozilla Developers Network.
</li>
<li>
<a href="http://www.codecademy.com/tracks/javascript" target="_blank">Code Academy</a>, mit interactiven Javascript
Beispiele.
</li>
<li>
<a href="http://jsforcats.com/">JavaScript For Cats,</a> Basics für cats.
</li>
<li>
<a href="%20https://www.w3schools.com/js/">W3Schools JavaScript,</a> Basics und TryIt Beispiele.
</li>
</ul>
</section>
<section>
<h2>Fragen?</h2>
<a href="JS.html" target="_blank">Anfang</a>
</section>-->
</div>
</div><script src="js/reveal.js">
</script> <script>
Reveal.initialize({
// Display controls in the bottom right corner
controls: true,
// Display a presentation progress bar
progress: true,
// Display the page number of the current slide
slideNumber: true,
// Push each slide change to the browser history
history: true,
// Enable keyboard shortcuts for navigation
keyboard: true,
// Enable the slide overview mode
overview: true,
// Vertical centering of slides
center: true,
// Enables touch navigation on devices with touch input
touch: true,
// Loop the presentation
loop: false,
// Change the presentation direction to be RTL
rtl: false,
// Randomizes the order of slides each time the presentation loads
shuffle: false,
// Turns fragments on and off globally
fragments: true,
// Flags if the presentation is running in an embedded mode,
// i.e. contained within a limited portion of the screen
embedded: false,
// Flags if we should show a help overlay when the questionmark
// key is pressed
help: true,
// Flags if speaker notes should be visible to all viewers
showNotes: false,
// Number of milliseconds between automatically proceeding to the
// next slide, disabled when set to 0, this value can be overwritten
// by using a data-autoslide attribute on your slides
autoSlide: 0,
// Stop auto-sliding after user input
autoSlideStoppable: true,
// Use this method for navigation when auto-sliding
autoSlideMethod: Reveal.navigateNext,
// Enable slide navigation via mouse wheel
mouseWheel: false,
// Hides the address bar on mobile devices
hideAddressBar: true,
// Opens links in an iframe preview overlay
previewLinks: false,
// Transition style
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Transition speed
transitionSpeed: 'default', // default/fast/slow
// Transition style for full page slide backgrounds
backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom
// Number of slides away from the current that are visible
viewDistance: 3,
// Parallax background image
parallaxBackgroundImage: '', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
// Parallax background size
parallaxBackgroundSize: '', // CSS syntax, e.g. "2100px 900px"
// Number of pixels to move the parallax background per slide
// - Calculated automatically unless specified
// - Set to 0 to disable movement along an axis
parallaxBackgroundHorizontal: null,
parallaxBackgroundVertical: null
});
</script>
</body>
</html>