Skip to content

Instantly share code, notes, and snippets.

@Eder87rh
Created July 6, 2019 15:33
Show Gist options
  • Select an option

  • Save Eder87rh/63eee3f0b1fc084a30cf5bad68937804 to your computer and use it in GitHub Desktop.

Select an option

Save Eder87rh/63eee3f0b1fc084a30cf5bad68937804 to your computer and use it in GitHub Desktop.
wesbos-array cardio.js
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 }
];
// Array.prototype.filter()
// Filtrar los inventores que nacieron en los años 1500
// Array.prototype.map()
// Crear un array de inventores con nombres y apellidos
// Array.prototype.sort()
// Ordenar los inventores por fecha de nacimiento del mas viejo
// al mas joven
// Array.prototype.reduce()
// Cuantos años vivieron todos los inventores? (Suma total)
// Ordenar los inventores por años vividos
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'];
// 7. sort Exercise
// Ordenar a la gente por apellido alfabeticamente
// 8. Reduce Exercise
// Sumar las instancias de cada uno de los elementos del
// siguiente array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment