-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathes6.html
33 lines (32 loc) · 1.12 KB
/
es6.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Next Generation JS: Intro to ES6 - List of New Concepts</title>
</head>
<body>
<h1>List of New Concepts</h1>
<p>These are the following things we will learn:
<ol>
<li>Variable Declarations with <code>let</code> & <code>const</code></li>
<li>Blocks & IIFEs</li>
<li>Strings & new String methods</li>
<li>Arrow Functions</li>
<li>Destructuring</li>
<li>Arrays & new Array methods</li>
<li>The Spread Operator</li>
<li>REST & Default Parameters</li>
<li>Maps</li>
<li>Classes & Subclasses</li>
</ol>
Later, we're going to learn the following:
<ol>
<li>Promises</li>
<li>Native Modules</li>
</ol>
</p>
<!-- <p><em>Check the developer console for the log</em></p> -->
<!-- <script src="./scripts/first_class_functions.js" type="text/javascript"></script> -->
</body>
</html>