JavaScript - ray 有氧运动第 2 天-js教程

首页 2024-07-11 22:49:13

大家好,欢迎回来 wes bos 的 javascript3000 的另一天!嗯...上次发帖已经两个多星期了,真的很难过。 尽管如此,我还是在目前的工作中发出了通知,他们一直让我陷入困境,所以我最近没有太多时间写代码……但现在我正式成为你的兼职工作可以打赌,这些帖子将开始更频繁地发布,可能更多样化,因为除了这个项目,我还有时间从事其他项目。 然而,你来这里并不是为了了解我生活的最新发展,你来这里是为了了了解更多关于这门课程的信息! 让我们开始吧!

与第一天相比,阵列有氧运动的第二天一点也不算什么。 我不会撒谎。 根据第一个挑战的进展,我绝对害怕接受这个挑战。 第一门课程让我不断地在谷歌上搜索和跳过障碍。 这真的感觉像是一种锻炼,更像是一种伸展运动,或者可能是一门瑜伽课程。 array cardio 第 2 天的第一部分涉及使用 array.prototype.some() 和 array.protoype.every()。 我们得到了包括人员列表及其出生年份在内的数组中的对象。 根据这些信息,我们被要求弄清楚是否至少有一个人超过了 19 岁,然后每个人都超过了吗? 19 岁。

const people = [
      { name: 'wes', year: 1988 },
      { name: 'kait', year: 1986 },
      { name: 'irv', year: 1970 },
      { name: 'lux', year: 2015 }
    ];
    // some and every checks
    // array.prototype.some() // is at least one person 19 or older?
    const isadult = people.some(person => ((new date())
  .getfullyear()) - person.year >= 19 )

  console.log({isadult})
    // array.prototype.every() // is everyone 19 or older?
    const areadult = people.every(person => {
      const currentyear = (new date()).getfullyear();
      return currentyear - person.year >= 19
    }
  )
  console.log(areadult)

这部分挑战让我对自己感觉很好,我不会撒谎。 经过快速谷歌搜索,我得到了关于如何使用它的信息 array.prototype.some() 答案也直接应用于 .every()。 我绝对把它从水里吹出来,觉得我可以在创纪录的时间内完成这个挑战。事实证明,我既对又错...

这个挑战的第二部分也是最后一部分 array.prototype.find() 和 array.prototype.findindex()。 我们在数组中得到了另一个对象,但这次它有一个关于某个餐厅的评论列表,所有的评论都有自己的评论 id 帮助区分它们。 就像在快速谷歌搜索之前向我展示如何使用它一样 .find() 以及如何很好地使用它,但它似乎并不完全如此 wes 想要的。 我只在使用 console.log 时使用 .find() 根据给定数字引用我制作的调用 id 的函数。 我想我可以说这和他做的很相似...有点...你知道,考虑到我们都得到了同样的结果。 但是我不知道,在这种情况下,我认为我比他的代码更喜欢我的代码。

    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 }
    ];
    // Find is like filter, but instead returns just the one you are looking for
    // find the comment with the ID of 823423

    function hasId(idNumber) {
      return idNumber.id === 823423
    }
    console.log (comments.find(hasId))

    // Array.prototype.findIndex()
    // Find the comment with this ID
    // delete the comment with the ID of 823423
    function thisId(idNumber) {
      return idNumber.id === 823423
    }
    console.log (comments.findIndex(thisId))

    const index = comments.findIndex(comment => comment.id === 823423)

    const newComments = [
      ...comments.slice(0, index),
      ...comments.slice(index   1)
    ]
    console.table(newComments)

事实证明,我不知道他希望我们在挑战的最后一部分做什么。 让我们使用 findindex() 同时,他也希望我们删除和我们以前发现的一样的东西 id 的评论。 我刚刚通过 vscode 并手动删除注释。 公平地说,我认为他只是想向我们展示如果评论不再存在,他会回来什么。 事实证明,他希望我们使用它 .splice 或 .slice 通过新代码删除注释(这对本练习更有意义),然后让我们访问没有特定注释的新数组。 所以...是的...我没有这样做,因为我只是手动删除了它。 但我确实回去和他一起编码,看看如何通过新的代码行实现这一点。

所以就这样。 array 有氧运动的第二天。得知没有第三天,我感到非常高兴。 我并不是说我不能多练习数组,也不能多练习如何与他们互动。 就这门课程而言,这些可能是迄今为止最无聊的。 请注意我要讲的下一课。我希望它会在本周或下周初发布,因为我会有更多的时间! 无论如何,我希望你准备好使用它 javascript3000:享受 html5 canvas 的乐趣!

立即学习“Java免费学习笔记(深入);

以上是JavaScriptt - ray 有氧运动第 2 更多关于天的详细信息,请关注其他相关文章!


p