forked from marijnh/Eloquent-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (108 loc) · 5.88 KB
/
index.html
File metadata and controls
124 lines (108 loc) · 5.88 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
<!doctype html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Eloquent JavaScript</title>
<link rel=stylesheet href="css/ejs.css">
</head>
<article>
<h1>Eloquent JavaScript<div style="font-size: 70%">3rd edition</div></h2>
<p>This is a book about JavaScript, programming, and the wonders of
the digital. You can read it online here, or get your own
<a href="http://www.amazon.com/gp/product/1593275846/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1593275846&linkCode=as2&tag=marijhaver-20&linkId=VPXXXSRYC5COG5R5">paperback
copy</a> of the <em>second</em> edition. A paper third edition is
being worked on, but it isn't clear yet when it'll be available.</p>
<p style="text-align: center; margin: 3em 0 2.5em">
<img src="img/cover.jpg" alt="Cover image" style="border: 1px solid black; max-width: 100%; box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.4)">
</p>
<p>Written by Marijn Haverbeke.</p>
<div style="font-size: 80%">
<p>Licensed under
a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative
Commons attribution-noncommercial license</a>. All code in this book
may also be considered licensed under
an <a href="http://opensource.org/licenses/MIT">MIT license</a>.</p>
<p>Illustrations by various artists: Cover and chapter illustrations
by Madalina Tantareanu. Pixel art in Chapters 7 and 16 by Antonio
Perdomo Pastor. Regular expression diagrams in Chapter 9 generated
with <a href="http://regexper.com">regexper.com</a> by Jeff
Avallone. Village photograph in Chapter 11 by Fabrice Creuzot. Game
concept for Chapter 15 by <a href="http://lessmilk.com">Thomas
Palef</a>.</p>
<p>The third edition was made possible
by <a href="backers3.html">325 financial backers</a>, most
notably <a href="https://nextjournal.com/"><img src="img/nextjournal.png"
alt="Nextjournal" class=logo></a> and <a href="https://www.holbertonschool.com/"><img src="img/holberton.png" alt="Holberton School" class=logo></a>. The second edition
was supported by <a href="backers.html">454 backers</a>, with
significant contributions
from <a href="http://www.mozilla.org/en-US/"><img src="img/mozilla_mini.png"
alt=Mozilla
class=logo></a>, <a href="http://www.hackreactor.com/"><img src="img/hack_reactor_mini.png"
alt="Hack Reactor" class=logo></a>,
and <a href="http://www.ghostery.com/"><img src="img/ghostery_mini.png"
alt="Ghostery" class=logo></a>.</p>
</div>
<h2>Contents</h2>
<style>
li.contents-intro:before { display: none; }
.toc h3 { position: absolute; margin: 0; top: -2px; right: 0; font-family: inherit; font-weight: normal; font-size: 90%; }
@media screen and (max-width: 500px) { .toc h3 { display: none } }
ul.links { list-style-type: circle; }
img.logo { vertical-align: text-top; padding: 0px 4px; border: 0; }
</style>
<ol class=toc>
<li class="contents-intro"><a href="00_intro.html">Introduction</a>
<li style="counter-reset: li; position: relative">
<h3>(Part 1: Language)</h3>
<a href="01_values.html">Values, Types, and Operators</a>
</li>
<li><a href="02_program_structure.html">Program Structure</a>
<li><a href="03_functions.html">Functions</a>
<li><a href="04_data.html">Data Structures: Objects and Arrays</a>
<li><a href="05_higher_order.html">Higher-order Functions</a>
<li><a href="06_object.html">The Secret Life of Objects</a>
<li><a href="07_robot.html">Project: A Robot</a>
<li><a href="08_error.html">Bugs and Errors</a>
<li><a href="09_regexp.html">Regular Expressions</a>
<li><a href="10_modules.html">Modules</a>
<li><a href="11_async.html">Asynchronous Programming</a>
<li><a href="12_language.html">Project: A Programming Language</a>
<li style="position: relative">
<h3>(Part 2: Browser)</h3>
<a href="13_browser.html">JavaScript and the Browser</a>
</li>
<li><a href="14_dom.html">The Document Object Model</a>
<li><a href="15_event.html">Handling Events</a>
<li><a href="16_game.html">Project: A Platform Game</a>
<li><a href="17_canvas.html">Drawing on Canvas</a>
<li><a href="18_http.html">HTTP and Forms</a>
<li><a href="19_paint.html">Project: A Pixel Art Editor</a>
<li style="position: relative">
<h3>(Part 3: Node)</h3>
<a href="20_node.html">Node.js</a>
</li>
<li><a href="21_skillsharing.html">Project: Skill-Sharing Website</a>
</ol>
<p>A paper version of Eloquent JavaScript, including an additional
chapter, is being brought out
by <a href="http://www.nostarch.com/ejs2">No Starch Press</a>. The
third edition should become available on paper somewhere in
2018.</p>
<h2>Other pages</h2>
<ul class="links">
<li><a href="code">Code sandbox and exercise solutions</a></li>
<li><a href="errata.html">Errata for the paper book</a></li>
<li><a href="Eloquent_JavaScript.pdf">This book as a single PDF file</a> (& <a href="Eloquent_JavaScript_small.pdf">small version for mobile</a>)</li>
<li><a href="https://eloquentjavascript.net/Eloquent_JavaScript.epub">This book as an EPUB file</a></li>
<li><a href="https://eloquentjavascript.net/Eloquent_JavaScript.mobi">This book as a MOBI (Kindle) file</a></li>
<li><a href="https://gitter.im/Eloquent-JavaScript/Lobby">Community chat for readers</a></li>
<li><a href="https://eloquentjavascript.net/1st_edition">The first edition of the book</a></li>
<li><a href="https://eloquentjavascript.net/2nd_edition">The second edition of the book</a></li>
</ul>
<h2>Translations of the second edition</h2>
<ul class=translations>
<li><a href="http://to6esko.github.io/">Български (Bulgarian)</a></li>
<li><a href="http://braziljs.github.io/eloquente-javascript/">Português (Portuguese)</a></li>
<li><a href="https://karmazzin.gitbooks.io/eloquentjavascript_ru/content/">Русский (Russian)</a></li>
</ul>
</article>