js07 - Array Cardio Day 2

内容

运用所给函数进行打印

  <script>
    // ## Array Cardio Day 2

    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?
    let now = new Date().getFullYear()
    for(let i = 0 ; i < people.length;i++){
      if(now - people[i].year >= 19){
        console.log(people[i].name)
      } 
    }
    let adult = people.some(person => {
      let now = new Date().getFullYear()
      return now - person.year >= 19 
      })
    console.log(adult)
    // Array.prototype.every() // is everyone 19?
    let everyone = people.every(person =>{
      let now = new Date().getFullYear()
      return now - person.year >=19
    })
    console.log(everyone)
    // 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
    let findOne = comments.find(comment => comment.id==823423)
    console.log(findOne)
    // Array.prototype.findIndex()
    // Find the comment with this ID
    // delete the comment with the ID of 823423
    let idx = comments.findIndex(comment => comment.id == 823423)
    console.log(idx)
    comments.splice(idx,1)
    console.log(comments)
  </script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值