forked from serhiiboreiko/slides-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (143 loc) · 3.81 KB
/
index.html
File metadata and controls
151 lines (143 loc) · 3.81 KB
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
<!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">
<title>JavaScript</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section class="js">
<section>
<h4>Let's talk about JavaScript</h4>
</section>
<section>
<h2>History</h2>
<div class="center">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/09/BEich.jpg" alt="">
<p>Brendan Eich (July 4, 1961)</p>
</div>
</section>
<section>
<p class="big">Scheme</p>
</section>
<section>
<p class="big">Mocha</p>
</section>
<section>
<p class="big">LiveScript</p>
</section>
<section>
<p class="big">JavaScript</p>
</section>
<section>
<p class="big">JavaScript</p>
<p class="big">&</p>
<p class="big">JScript
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Microsoft_logo_(2012).svg/2000px-Microsoft_logo_(2012).svg.png" alt="" class="small">
</p>
</section>
<section>
<p class="big">ECMAScript</p>
</section>
</section>
<section>
<section>
<h4>ECMAScript</h4>
<p>ECMAScript-262</p>
</section>
<section>
<h4>AJAX</h4>
</section>
<section>
<h4>ECMAScript 3.1 and ECMAScript 4</h4>
</section>
<section>
<h4>ECMAScript 6 or "ECMAScript 2015"</h4>
</section>
<section>
<h4>ECMAScript 6 is here</h4>
<img src="img/es6.jpg" alt="">
<a href="http://kangax.github.io/compat-table/es6/">http://kangax.github.io/compat-table/es6/</a>
</section>
</section>
<section>
<section>
<h4>jquery</h4>
</section>
</section>
<section>
<section>
<h3>Where used JavaScript and why is it unique?</h3>
</section>
<section>
<p>Node.js</p>
<p>Ryan Dahl</p>
<img src="http://hacktivist.in/introduction-to-nodejs-mongodb-meteor/img/ryan.jpg" alt="">
</section>
<section>
<h4>NPM</h4>
<p>Node Package Manager</p>
</section>
<section>
<ul>
<li>Browser</li>
<li>Server</li>
<li>Desktop</li>
<li>Native</li>
</ul>
</section>
<section>
<h4>So, why JavaScript so unique?</h4>
</section>
<section>
<h4>All browsers supported JavaScript.</h4>
</section>
<section>
<h4>JavaScript is fully integrated with HTML / CSS.</h4>
</section>
<section>
<h4>JavaScript really easy to use.</h4>
</section>
<section>
<h4>Almost</h4>
<img src="https://pp.vk.me/c629418/v629418210/32721/EOjqtJZzHpw.jpg" alt="">
</section>
<section>
<iframe src="https://giphy.com/embed/YFkpsHWCsNUUo" width="480" height="435" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
<p>As a web developer, working with JavaScript.</p>
</section>
</section>
<section>
<section>
<img src="img/qrcode-slides.png" alt="">
<p>slides</p>
<a href="https://jestersunborn.github.io/slides-javascript/">https://jestersunborn.github.io/slides-javascript/</a>
</section>
<section>
<img src="img/qrcode-book.png" alt="">
<p>understanding es6</p>
<a href="http://understandinges6.denysdovhan.com/">http://understandinges6.denysdovhan.com/</a>
</section>
<section>
<h4>Thanks</h4>
</section>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
history: true,
dependencies: []
});
</script>
</body>
</html>