1. 程式人生 > >JavaScipt30(第七個案例)(主要知識點:數組some,every,findIndex方法)

JavaScipt30(第七個案例)(主要知識點:數組some,every,findIndex方法)

span delete pro ins begin name ref ons 計算

承接上文,這是第7個案例,這個案例沒什麽說的,主要有三個註意點:

附上項目鏈接: https://github.com/wesbos/JavaScript30

// 1. slice(begin, end) 如果end被省略,則slice會一直提取到原數組末尾。如果end大於數組長度,slice也會一直提取到原數組末尾。
// 2. {isAdult},直接創建了一個對象,他的key是isAdult,value是isAdult的值
// 3. new Date()).getFullYear()),我自己寫的時候是直接寫了2019去計算,還沒形成看到日期就用日期方法的條件反射
const people = [
      { name: 
‘Wes‘, year: 1988 }, { name: ‘Kait‘, year: 1986 }, { name: ‘Irv‘, year: 1970 }, { name: ‘Lux‘, year: 2015 } ]; const comments = [ { text: ‘Love this!‘, id: 523423 }, { text: ‘Super good‘, id: 823423 }, { text: ‘You are the best‘, id: 2039842 }, { text:
‘Ramen is my fav food ever‘, id: 123523 }, { text: ‘Nice Nice Nice!‘, id: 542328 } ]; // Some and Every Checks // Array.prototype.some() // is at least one person 19? // 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? 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(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); const newComments = [ ...comments.slice(0, index), ...comments.slice(index + 1) ];

JavaScipt30(第七個案例)(主要知識點:數組some,every,findIndex方法)