mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-14 09:34:55 +00:00
21 lines
488 B
HTML
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>
|