28 lines
741 B
HTML
28 lines
741 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>JavaScript Refresher</title>
|
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
|
<script src="assets/scripts/app.js" type="module"></script>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<img src="assets/images/js-logo-xs.png" alt="JavaScript logo" />
|
|
<h1>JavaScript Refresher</h1>
|
|
</header>
|
|
<ul>
|
|
<li>Base Syntax & Rules</li>
|
|
<li>Variables, Values & Operators</li>
|
|
<li>Functions</li>
|
|
<li>Objects</li>
|
|
<li>Arrays</li>
|
|
<li>Control Structures</li>
|
|
<li>Browser APIs & The DOM</li>
|
|
<li>Essential Features Used By React</li>
|
|
<li>Tricky Parts</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|