-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathindex.html
278 lines (240 loc) · 12.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="../_css/reset.css" />
<link rel="stylesheet" href="../_css/styles.css" />
<link rel="stylesheet" href="../_css/prism.css" />
<script src="../_js/prism.js"></script>
<title>JavaScript Fundamentals Learning Resources - Front-End Developer Learning Roadmap</title>
</head>
<body>
<div id="menu">
<a id="backToRoadMapLink" href="/">← Front-End Developer Learning Roadmap</a>
<div id="toc"></div>
</div>
<div id="panel">
<div id="menuButton">|||</div>
<div id="betaHeader"></div>
<div id="bookPadding">
<h1>JavaScript Fundamentals</h1>
<section class="attribution">
<p style="margin-top: 0px">
Written by
<a href="http://codylindley.com/" rel="nofollow">Cody Lindley</a>
<span id="lastMod" style="display: none">updated <span id="lastModDate"></span></span>
</p>
<h4>
<a href="https://frontendmasters.com/guides/learning-roadmap/">The Front-End Developer Roadmap</a> from
<a href="https://frontendmasters.com/">Frontend Masters</a> - Advance your skills with in-depth, modern front-end engineering courses.
</h4>
</section>
<script>
if (document.lastModified) {
document.getElementById('lastMod').style.display = 'inline';
document.getElementById('lastModDate').innerText = document.lastModified.split(' ')[0];
}
</script>
<hr />
<p><strong>Overview:</strong></p>
<p>Learning resources.</p>
<hr />
<p><strong>Definitions:</strong></p>
<dl>
<dt>JavaScript</dt>
<dd>
JavaScript is a high level, dynamic, untyped, and interpreted programming language. It has been standardized in the ECMAScript language
specification. Alongside HTML and CSS, it is one of the three essential technologies of World Wide Web content production; the majority
of websites employ it and it is supported by all modern web browsers without plugins. JavaScript is prototype-based with first-class
functions, making it a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles. It has an API
for working with text, arrays, dates and regular expressions, but does not include any I/O, such as networking, storage or graphics
facilities, relying for these upon the host environment in which it is embedded.
</dd>
</dl>
<hr />
<p><strong>Contribute content, suggestions, and fixes on github</strong>:</p>
<p>
<a href="https://github.com/FrontendMasters/learning-roadmap">https://github.com/FrontendMasters/learning-roadmap</a>
</p>
<hr />
<div id="chapter1" class="chapter">
<h2>Learning Resources</h2>
<h4>Getting Started:</h4>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/What_is_JavaScript" target="_blank"
>MDN: JavaScript</a
>
<span title="Read">📕</span>
</li>
<li><a href="https://javascript.info/intro#what-is-javascript" target="_blank">javascript.info</a> <span title="Read">📕</span></li>
<li><a href="http://eloquentjavascript.net/" target="_blank">Eloquent JavaScript</a> <span title="Read">📕</span></li>
</ul>
<h4>General Learning:</h4>
<ul>
<li>
<a href="https://github.com/getify/You-Dont-Know-JS/blob/2nd-ed/get-started/README.md" target="_blank"
>You Don't Know JS Yet: Get Started - 2nd Edition</a
>
<span title="Read">📕</span>
</li>
<li><a href="http://speakingjs.com/es5/index.html" target="_blank">Speaking JavaScript</a> <span title="Read">📕</span></li>
<li>
<a href="https://frontendmasters.com/courses/getting-started-javascript-v2/" target="_blank">Getting Started with JavaScript</a>
<span title="Video">🎥</span> <span title="Free">🆓</span>
</li>
<li>
<a href="http://exploringjs.com/impatient-js/index.html" target="_blank">JavaScript for impatient programmers</a>
<span title="Read">📕</span>
</li>
<li>
<a href="https://github.com/leonardomso/33-js-concepts" target="_blank">33 Concepts Every JavaScript Developer Should Know</a>
<span title="Read">📕</span>
</li>
<li>
<a href="https://frontendmasters.com/learn/javascript/" target="_blank">JavaScript Learning Path</a>
<span title="Video">🎥</span> <span title="Paid">💵</span>
</li>
</ul>
<h4>Mastering:</h4>
<ul>
<li>
<a href="https://exploringjs.com/deep-js/index.html" target="_blank">Deep JavaScript: Theory and techniques</a>
<span title="Read">📕</span>
</li>
<li>
<a href="https://frontendmasters.com/courses/javascript-hard-parts-v2/" target="_blank">JavaScript: The Hard Parts</a>
<span title="Video">🎥</span> <span title="Paid">💵</span>
</li>
<li>
<a href="https://frontendmasters.com/courses/deep-javascript-v3/" target="_blank">Deep JavaScript Foundations</a>
<span title="Video">🎥</span> <span title="Paid">💵</span>
</li>
<li>
<a href="https://molily.de/robust-javascript/" target="_blank">Robust Client-Side JavaScript A Developer’s Guide</a>
<span title="Read">📕</span> <span title="Paid">💵</span>
</li>
</ul>
</div>
<div id="chapter2" class="chapter">
<h2>Standards/Specifications:</h2>
<ul>
<li>
<a href="https://timothygu.me/es-howto/" target="_blank">How to Read the ECMAScript Specification</a>
</li>
<li>
<a href="http://ecma-international.org/ecma-262/10.0/index.html#Title" target="_blank">ECMAScript® 2019 Language Specification</a>
</li>
<li>
<a href="https://tc39.es/ecma262/" target="_blank">ECMAScript® 2020 Language Specification</a>
</li>
<li>
<a href="https://github.com/tc39/ecma262" target="_blank">Status, Process, and Documents for ECMA262</a>
</li>
<li>
<a href="https://github.com/tc39/proposals" target="_blank">ECMAScript proposals</a>
</li>
<li>
<a href="https://github.com/daumann/ECMAScript-new-features-list" target="_blank"
>Examples for new Javascript features by Specification</a
>
</li>
</ul>
</div>
<div id="chapter3" class="chapter">
<h2>References/Docs</h2>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference" target="_blank">MDN JavaScript Reference</a>
</li>
</ul>
</div>
<div id="chapter4" class="chapter">
<h2>Glossary/Jargon:</h2>
<ul>
<li>
<a href="https://www.codecademy.com/articles/glossary-javascript" target="_blank">JavaScript Glossary</a>
</li>
<li>
<a href="http://jargon.js.org/" target="_blank">Simplified JavaScript Jargon</a>
</li>
</ul>
</div>
<div id="chapter5" class="chapter">
<h2>JS Explorers/Visualizers:</h2>
<ul>
<li>
<a href="https://sdras.github.io/array-explorer/" target="_blank">JavaScript Array Explorer</a>
</li>
<li>
<a href="https://sdras.github.io/object-explorer/" target="_blank">JavaScript Object Explorer</a>
</li>
<li>
<a href="https://tylermcginnis.com/javascript-visualizer/" target="_blank">JavaScript Visualizer</a>
</li>
</ul>
</div>
</div>
</div>
<script src="../_js/slideout.min.js"></script>
<script src="../_js/jquery-3.3.1.slim.min.js"></script>
<script>
// Create slide out TOC
var slideout = new Slideout({
panel: document.getElementById('panel'),
menu: document.getElementById('menu'),
padding: 356,
tolerance: 70,
});
// Create TOC dynamically from content
jQuery('.chapter').each(function (index) {
jQuery('h2', '#chapter' + (index + 1)).each(function (i) {
$(this).attr('id', index + 1);
$('#toc').append('<h5><a href="#' + (index + 1) + '">' + $(this).html() + '</a></h5>');
});
jQuery('h3', '#chapter' + (index + 1)).each(function (i) {
$(this).attr('id', index + 1 + '.' + (i + 1));
$('#toc').append('<h6><a href="#' + (index + 1) + '.' + (i + 1) + '">' + $(this).html() + '</a></h6>');
});
});
jQuery('#panel').on('click', 'a:not(.codesandboxlink a, .toolbar a)', function () {
window.open($(this).attr('href'));
return false;
});
// toggle TOC from hamburger icon
document.querySelector('#menuButton').addEventListener('click', function () {
slideout.toggle();
});
// toggle TOC on window resize
window.addEventListener('resize', resizeThrottler, false);
var resizeTimeout;
function resizeThrottler() {
// ignore resize events as long as an actualResizeHandler execution is in the queue
if (!resizeTimeout) {
resizeTimeout = setTimeout(function () {
resizeTimeout = null;
actualResizeHandler();
// The actualResizeHandler will execute at a rate of 15fps
}, 66);
}
}
function actualResizeHandler() {
if (window.innerWidth > 1036) {
slideout.open();
} else {
slideout.close();
}
}
// open TOC on load if window is wide enough
window.addEventListener('load', function (event) {
if (window.innerWidth > 1036) {
slideout.open();
} else {
slideout.close();
}
});
</script>
</body>
</html>