|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>Array Cardio 💪</title> |
| 6 | +</head> |
| 7 | +<body> |
| 8 | + <p><em>Psst: have a look at the JavaScript Console</em> 💁</p> |
| 9 | + <script> |
| 10 | + // Get your shorts on - this is an array workout! |
| 11 | + // ## Array Cardio Day 1 |
| 12 | + |
| 13 | + // Some data we can work with |
| 14 | + |
| 15 | + const inventors = [ |
| 16 | + { first: 'Albert', last: 'Einstein', year: 1879, passed: 1955 }, |
| 17 | + { first: 'Isaac', last: 'Newton', year: 1643, passed: 1727 }, |
| 18 | + { first: 'Galileo', last: 'Galilei', year: 1564, passed: 1642 }, |
| 19 | + { first: 'Marie', last: 'Curie', year: 1867, passed: 1934 }, |
| 20 | + { first: 'Johannes', last: 'Kepler', year: 1571, passed: 1630 }, |
| 21 | + { first: 'Nicolaus', last: 'Copernicus', year: 1473, passed: 1543 }, |
| 22 | + { first: 'Max', last: 'Planck', year: 1858, passed: 1947 }, |
| 23 | + { first: 'Katherine', last: 'Blodgett', year: 1898, passed: 1979 }, |
| 24 | + { first: 'Ada', last: 'Lovelace', year: 1815, passed: 1852 }, |
| 25 | + { first: 'Sarah E.', last: 'Goode', year: 1855, passed: 1905 }, |
| 26 | + { first: 'Lise', last: 'Meitner', year: 1878, passed: 1968 }, |
| 27 | + { first: 'Hanna', last: 'Hammarström', year: 1829, passed: 1909 } |
| 28 | + ]; |
| 29 | + |
| 30 | + const people = ['Beck, Glenn', 'Becker, Carl', 'Beckett, Samuel', 'Beddoes, Mick', 'Beecher, Henry', 'Beethoven, Ludwig', 'Begin, Menachem', 'Belloc, Hilaire', 'Bellow, Saul', 'Benchley, Robert', 'Benenson, Peter', 'Ben-Gurion, David', 'Benjamin, Walter', 'Benn, Tony', 'Bennington, Chester', 'Benson, Leana', 'Bent, Silas', 'Bentsen, Lloyd', 'Berger, Ric', 'Bergman, Ingmar', 'Berio, Luciano', 'Berle, Milton', 'Berlin, Irving', 'Berne, Eric', 'Bernhard, Sandra', 'Berra, Yogi', 'Berry, Halle', 'Berry, Wendell', 'Bethea, Erin', 'Bevan, Aneurin', 'Bevel, Ken', 'Biden, Joseph', 'Bierce, Ambrose', 'Biko, Steve', 'Billings, Josh', 'Biondo, Frank', 'Birrell, Augustine', 'Black, Elk', 'Blair, Robert', 'Blair, Tony', 'Blake, William']; |
| 31 | + |
| 32 | + // Array.prototype.filter() |
| 33 | + // 1. Filter the list of inventors for those who were born in the 1500's |
| 34 | + const subsetInventors = inventors.filter( |
| 35 | + inventor => (inventor.year >= 1500 && inventor.year < 1600) |
| 36 | + ); |
| 37 | + console.table(subsetInventors); |
| 38 | + |
| 39 | + // Array.prototype.map() |
| 40 | + // 2. Give us an array of the inventors' first and last names |
| 41 | + const inventorsNames = inventors.map(inventor => `${inventor.first} ${inventor.last}`); |
| 42 | + console.log(inventorsNames); |
| 43 | + |
| 44 | + // Array.prototype.sort() |
| 45 | + // 3. Sort the inventors by birthdate, oldest to youngest |
| 46 | + const sortedByBirthdate = inventors.sort((i1, i2) => (i1.year < i2.year) ? -1 : 1); |
| 47 | + console.table(sortedByBirthdate); |
| 48 | + |
| 49 | + // Array.prototype.reduce() |
| 50 | + // 4. How many years did all the inventors live? |
| 51 | + const ageInventors = inventors.reduce((totalAge, inventor) => { |
| 52 | + return totalAge + (inventor.passed - inventor.year); |
| 53 | + }, 0); |
| 54 | + console.log(ageInventors); |
| 55 | + |
| 56 | + // 5. Sort the inventors by years lived |
| 57 | + const sortedByAge = inventors.sort((i1, i2) => { |
| 58 | + const i1Age = i1.passed - i1.year; |
| 59 | + const i2Age = i2.passed - i2.year; |
| 60 | + return (i1Age < i2Age) ? -1 : 1; |
| 61 | + }); |
| 62 | + console.table(sortedByAge); |
| 63 | + |
| 64 | + // 6. create a list of Boulevards in Paris that contain 'de' anywhere in the name |
| 65 | + // https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris |
| 66 | + const category = document.querySelector('.mw-category'); |
| 67 | + const links = Array.from(category.querySelectorAll('a')); |
| 68 | + const de = links.map(link => link.textContent) |
| 69 | + .filter(streetName => streetName.includes(' de ')); |
| 70 | + console.log(de); |
| 71 | + |
| 72 | + |
| 73 | + // 7. sort Exercise |
| 74 | + // Sort the people alphabetically by last name |
| 75 | + const sortedByLastName = people.sort((p1, p2) => { |
| 76 | + const p1LastName = p1.split(', ')[0]; |
| 77 | + const p2LastName = p2.split(', ')[0]; |
| 78 | + return (p1LastName < p2LastName) ? -1 : 1; |
| 79 | + }); |
| 80 | + console.log(sortedByLastName); |
| 81 | + |
| 82 | + // 8. Reduce Exercise |
| 83 | + // Sum up the instances of each of these |
| 84 | + const data = ['car', 'car', 'truck', 'truck', 'bike', 'walk', 'car', 'van', 'bike', 'walk', 'car', 'van', 'car', 'truck' ]; |
| 85 | + const vehicle = data.reduce((total, item) => { |
| 86 | + if (!total[item]) { |
| 87 | + total[item] = 0; |
| 88 | + } |
| 89 | + total[item]++; |
| 90 | + return total; |
| 91 | + }, {}); |
| 92 | + console.log(vehicle); |
| 93 | + |
| 94 | + </script> |
| 95 | +</body> |
| 96 | +</html> |
0 commit comments