-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass22-arrays.html
49 lines (37 loc) · 1.09 KB
/
class22-arrays.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE-edge" />
<meta name="viewport" content="width-device-width, initial-scale=1.0" />
<title>Arrays in JS</title>
</head>
<body>
Arrays
<script>
/* Arrays in JS */
let arrayItem = "book";
const books = ["pens", arrayItem, 4, true];
books[books.length] = "pencil";
books[13] = 3.8;
console.log(books[5]);
console.log(books);
console.log(books.length);
console.log(books[1]);
/* Array Methods */
let pencilBoxContents = ["pen", "pencil", "eraser"];
pencilBoxContents.shift();
pencilBoxContents.forEach(function (item) {
item = `<li>${item}</li>`;
console.log(item);
});
let shortItems = pencilBoxContents.find(function (item) {
if (item.length <= 5) {
return item;
}
});
console.log(shortItems);
console.log(pencilBoxContents.join(" | "));
</script>
</body>
</html>