Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Intro to ES6</title> | |
<meta name=viewport content="width=device-width, initial-scale=1"> | |
<link rel="canonical" href="https://andrew.hedges.name/es6/"> | |
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:400,700&subset=latin-ext" rel="stylesheet"> | |
<link rel="stylesheet" href="assets/css/highlight-agate.css"> | |
<link rel="stylesheet" type="text/css" href="assets/css/styles.css"> | |
<script type="text/javascript"> | |
var _gaq=_gaq||[];_gaq.push(['_setAccount','UA-254616-1']);_gaq.push(['_trackPageview']);(function(){var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(ga);})(); | |
</script> | |
<script defer src="assets/js/markdown.js"></script> | |
<script defer src="assets/js/highlight.min.js"></script> | |
<script defer type="module" src="assets/js/behaviors.js"></script> | |
</head> | |
<body> | |
<section id="everything-that-is-not-a-lesson"> | |
<header> | |
<h1> | |
<a href="/es6/">Intro to ES6</a> | |
<img class="fidget-spinner" src="assets/img/fidget-spinner.svg" alt="Loading…"> | |
<img class="hamburger" src="assets/img/burger.svg" alt="Toggle Navigation"> | |
</h1> | |
</header> | |
<nav> | |
<ul> | |
<li class="selected"><a data-lesson="intro">Introduction</a></li> | |
<li><a data-lesson="variables">Variable Assignment</a></li> | |
<li><a data-lesson="destructuring">Destructuring Assignment</a></li> | |
<li><a data-lesson="rest-and-spread">Rest & Spread</a></li> | |
<li><a data-lesson="default-parameter-values">Default Parameter Values</a></li> | |
<li><a data-lesson="block-scope">Block Scope</a></li> | |
<li><a data-lesson="templates">Template Literals</a></li> | |
<li><a data-lesson="arrow-functions">Arrow Functions</a></li> | |
<li><a data-lesson="classes">Classes</a></li> | |
<li><a data-lesson="modules">Modules</a></li> | |
<li><a data-lesson="resources">Resources</a></li> | |
</ul> | |
</nav> | |
<footer> | |
<p> | |
Created by <a href="https://andrew.hedges.name">Andrew Hedges</a> in 2017 using <a data-lesson="colophon" title="Colophon">plain old HTML, CSS, and ES6</a>. | |
Suggestions welcome via <a href="https://github.com/segdeha/es6">the GitHub repo</a>. | |
</p> | |
<p> | |
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png"></a> | |
</p> | |
</footer> | |
</section> | |
<article id="lesson"> | |
<h1>Loading…</h1> | |
<p>Still here? That probably means your browser does not support <a href="http://es6-features.org">ES6</a>.</p> | |
<p>As of October 2017, both Chrome and Safari fully support ES6 (as well as the 2 new features of ES7). Firefox and Edge support ES6 as well, albeit behind feature flags.</p> | |
</article> | |
</body> | |
</html> |