-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter_fourteen.js
78 lines (63 loc) · 2.25 KB
/
chapter_fourteen.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict'
// build a table
const MOUNTAINS = [
{name: "Kilimanjaro", height: 5895, place: "Tanzania"},
{name: "Everest", height: 8848, place: "Nepal"},
{name: "Mount Fuji", height: 3776, place: "Japan"},
{name: "Vaalserberg", height: 323, place: "Netherlands"},
{name: "Denali", height: 6168, place: "United States"},
{name: "Popocatepetl", height: 5465, place: "Mexico"},
{name: "Mont Blanc", height: 4808, place: "Italy/France"}
];
function styleNumberValues() {
const allRows = document.getElementsByTagName('tr');
for (let i = 0; i < allRows.length; i++) {
if ( i === 0) continue;
const numberValue = allRows[i].firstElementChild.nextElementSibling;
numberValue.style.textAlign = 'right';
}
}
function generateMountainTable(mountains) {
const domParent = document.getElementById('mountains');
const tableElement = document.createElement('table');
const headerRow = document.createElement('tr');
const nameHeader = headerRow.appendChild(document.createElement('th'));
nameHeader.innerText = 'name';
const heightHeader = headerRow.appendChild(document.createElement('th'));
heightHeader.innerText = 'height';
const placeHeader = headerRow.appendChild(document.createElement('th'));
placeHeader.innerText = 'place';
domParent.appendChild(tableElement);
domParent.firstElementChild.appendChild(headerRow);
for (let mountain of mountains) {
const table = document.getElementsByTagName('table');
const newRow = document.createElement('tr');
for (let mountainData in mountain) {
const newData = document.createElement('td');
newData.innerText = mountain[mountainData];
newRow.appendChild(newData);
}
table[0].appendChild(newRow);
}
styleNumberValues();
}
generateMountainTable(MOUNTAINS);
//own implemnetation of getElementsByTagName
function byTagName(node, tagName) {
let solution = [];
const name = tagName.toUpperCase();
function findIn(node) {
const nodeChildren = Array.from(node.children);
nodeChildren.forEach((child) => {
if (child.nodeName === name) {
solution.push(child);
}
if (child.children) {
findIn(child, name);
}
})
}
findIn(node);
return solution;
}
console.log(byTagName(document.body, 'tr').length);