Array Cardio Day 1
제목처럼 자바스크립트 배열과 배열제어에 대해서 공부
기본코드
Psst: have a look at the JavaScript Console 💁
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Array Cardio 💪</title>
</head>
<body>
<p><em>Psst: have a look at the JavaScript Console</em> 💁</p>
<script>
// Get your shorts on - this is an array workout!
// ## Array Cardio Day 1
// Some data we can work with
const inventors = [
{ first: 'Albert', last: 'Einstein', year: 1879, passed: 1955 },
{ first: 'Isaac', last: 'Newton', year: 1643, passed: 1727 },
{ first: 'Galileo', last: 'Galilei', year: 1564, passed: 1642 },
{ first: 'Marie', last: 'Curie', year: 1867, passed: 1934 },
{ first: 'Johannes', last: 'Kepler', year: 1571, passed: 1630 },
{ first: 'Nicolaus', last: 'Copernicus', year: 1473, passed: 1543 },
{ first: 'Max', last: 'Planck', year: 1858, passed: 1947 },
{ first: 'Katherine', last: 'Blodgett', year: 1898, passed: 1979 },
{ first: 'Ada', last: 'Lovelace', year: 1815, passed: 1852 },
{ first: 'Sarah E.', last: 'Goode', year: 1855, passed: 1905 },
{ first: 'Lise', last: 'Meitner', year: 1878, passed: 1968 },
{ first: 'Hanna', last: 'Hammarström', year: 1829, passed: 1909 }
];
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'];
// Array.prototype.filter()
// 1. Filter the list of inventors for those who were born in the 1500's
// Array.prototype.map()
// 2. Give us an array of the inventors' first and last names
// Array.prototype.sort()
// 3. Sort the inventors by birthdate, oldest to youngest
// Array.prototype.reduce()
// 4. How many years did all the inventors live?
// 5. Sort the inventors by years lived
// 6. create a list of Boulevards in Paris that contain 'de' anywhere in the name
// https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris
// 7. sort Exercise
// Sort the people alphabetically by last name
// 8. Reduce Exercise
// Sum up the instances of each of these
const data = ['car', 'car', 'truck', 'truck', 'bike', 'walk', 'car', 'van', 'bike', 'walk', 'car', 'van', 'car', 'truck' ];
</script>
</body>
</html>
목표
자바스크립트의 배열제어 방법을 코드로 구현해보며 익힘
과정
- filter()
- map()
- sort()
- reduce()
코드 분석
1. filter
// Array.prototype.filter()
// 1. Filter the list of inventors for those who were born in the 1500's
const fifteen = inventors.filter(inventor => (inventor.year >= 1500 && inventor.year < 1600));
console.table(fifteen);
filter()
메소드로 inventors
배열 중 1500년대에 태어난 사람을 정렬
inventors 배열 내의 모든 요소 각각 값들 중 year이 1500이상이면서 1600이하인 것들을 추출하고, 새로운 배열 fifteen
안에 담아 console.table(fifteen)
로 콘솔에 출력
2. map
// Array.prototype.map()
// 2. Give us an array of the inventor first and last names
const fullNames = inventors.map(inventor => ${inventor.first} ${inventor.last});
console.log(fullNames);
map()
메소드로 inventors
배열 각각 값들의 first, last만 꺼내 새로운 배열을 만듦
inventors 배열 내의 모든 요소 각각 값들 중 first와 last를 공백으로 구분지어 연결하고,
새로운 배열 fullNames
에 담아 console.log(fullNames)
로 콘솔에 출력
3. sort()
// Array.prototype.sort()
// 3. Sort the inventors by birthdate, oldest to youngest
// const ordered = inventors.sort(function(a, b) {
// if(a.year > b.year) {
// return 1;
// } else {
// return -1;
// }
// });
const ordered = inventors.sort((a, b) => a.year > b.year ? 1 : -1);
console.table(ordered);
sort()
메소드로 inventors
배열의 값들을 생일순으로 정렬(나이많은순서대로)
주석으로 되어있는 코드를 짧게 줄인것이 아래의 코드이니 비교해보면 된다.inventors
안의 두 값을 year 속성으로 비교 후 참이면 1, 거짓이면 -1을 반환하고,ordered
라는 새로운 배열에 담아서 console.table(ordered)
로 콘솔에 출력
4. reduce()
// Array.prototype.reduce()
// 4. How many years did all the inventors live?
const totalYears = inventors.reduce((total, inventor) => {
return total + (inventor.passed - inventor.year);
}, 0);
console.log(totalYears);
reduce()
메소드로 inventors
배열 값들의 총 수명을 구함
total 인자에 inventors 배열의 수명을 누적으로 더해주고(뒤의 0은 초기값),totalYears
에 담아 콘솔에 출력
찾아본 내용, 알게된 내용들
.prototype
- 인스턴스와 같은 개념(객체지향적 개발을 할 수 있게 해주는 메소드)