vanillajs-deck/slides/100-javascript-new.html
2020-01-28 10:23:02 -08:00

21 lines
488 B
HTML

<title>What's New with JavaScript?</title>
<h1>What's New with JavaScript?</h1>
<div class="center">
<div class="card appear" repeat="whatsnew">
<span>{{item}}</span>
</div>
</div>
<script>
this.whatsnew = [
"Scope and Variables",
"Powerful Strings",
"The Spread Operator",
"Destructuring",
"Parameters",
"Classes",
"Modules",
"...and a lot more!"
];
</script>
<next-slide>110-variables</next-slide>