We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7941ff0 commit a5ad5feCopy full SHA for a5ad5fe
04 - Array Cardio Day 1/index-START.html
@@ -45,6 +45,8 @@
45
46
// Array.prototype.map()
47
// 2. Give us an array of the inventors first and last names
48
+ const firstLast = inventors.map(inventor => `${inventor.first} ${inventor.last}`)
49
+ console.log(firstLast)
50
51
// Array.prototype.sort()
52
// 3. Sort the inventors by birthdate, oldest to youngest
0 commit comments