-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray-methods.html
More file actions
33 lines (33 loc) · 1.64 KB
/
array-methods.html
File metadata and controls
33 lines (33 loc) · 1.64 KB
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>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Array Methods</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="nav-bar">
<a href="index.html"><img src="/Images/logo2.png" alt="Cartoon chicken nugget with JSNuggets text next to it" width="200"></a>
<div id="nav-buttons">
<a href="index.html"><button id="string-methods-button">String Methods</button></a>
<a href="array-methods.html" ><button id="array-methods-button">Array Methods</button></a>
</div>
</div>
<h1 id="mainTitle">JavaScript Array Methods</h1>
<h3 id="introParagraph">
Your beginner friendly guide to JavaScript Array Methods! Each section will explain what each
array method does. You can then enter your own parameters for each argument of each method. The aim is to try to enter
different parameters until you find an error. Look out for these errors when you use these methods in your future code!
</h3>
<div id="hero-section2">
<p>Coming soon!</p>
</div>
<div id="footer">
<p>Made by <a href="https://github.com/aygurs/js-string-methods">aygurs</a> on GitHub</p>
</div>
<script src="./index.js"></script>
</body>