diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html index 8a2f8e8417..1c13a1ac8f 100644 --- a/01 - JavaScript Drum Kit/index-START.html +++ b/01 - JavaScript Drum Kit/index-START.html @@ -60,6 +60,25 @@ diff --git a/07 - Array Cardio Day 2/index-START.html b/07 - Array Cardio Day 2/index-START.html index 4ca34c7536..59f130c192 100644 --- a/07 - Array Cardio Day 2/index-START.html +++ b/07 - Array Cardio Day 2/index-START.html @@ -27,16 +27,41 @@ // Some and Every Checks // Array.prototype.some() // is at least one person 19 or older? - // Array.prototype.every() // is everyone 19 or older? + // const isAdult = people.some(function(person) { + // const currentYear = (new Date()).getFullYear(); + // if(currentYear - person.year >= 19) { + // return true; + // } + // }); + const isAdult = people.some(person => ((new Date()).getFullYear()) - person.year >= 19); + + console.log(isAdult); + // Array.prototype.every() // is everyone 19 or older? + const allAdults = people.every(person => ((new Date()).getFullYear()) - person.year >= 19); + + console.log(allAdults); // Array.prototype.find() // Find is like filter, but instead returns just the one you are looking for // find the comment with the ID of 823423 + // const comment = comments.find(function(comment) { + // if(comment.id === 823423) { + // return true; + // } + // }); + + const comment = comments.find(comment => comment.id === 823423); + + console.log(comment); // Array.prototype.findIndex() // Find the comment with this ID // delete the comment with the ID of 823423 + const index = comments.findIndex(comment => comment.id === 823423); + console.log(index); + comments.splice(index, 1); + console.table(comments);