搜索

首页  >  问答  >  正文

javascript - Array.find+箭头函数

昨天看到一段代码,是这样的:

const pets = [
  { type: 'Dog', name: 'Max'},
  { type: 'Cat', name: 'Karl'},
  { type: 'Dog', name: 'Tommy'},
]

function findDog(name) {
  for(let i = 0; i<pets.length; ++i) {
    if(pets[i].type === 'Dog' && pets[i].name === name) {
      return pets[i];
    }
  }
}

用短方法后:

pet = pets.find(pet => pet.type ==='Dog' && pet.name === 'Tommy');
console.log(pet); // { type: 'Dog', name: 'Tommy' }

我查了查arr.find方法,定义是array.find(function(currentValue, index, arr),thisValue)

上面的代码在pet=pets.find()内又传入pet,而没有参数,想知道这段代码到底是如何实现的呢?请诸大神帮解惑

我想大声告诉你我想大声告诉你2697 天前912

全部回复(2)我来回复

  • 高洛峰

    高洛峰2017-06-26 10:56:10

    pet = pets.find(function(pet) {
          return pet.type === 'Dog' && pet.name === 'Tommy';
    });

    把箭头函数转换成ES5就是这样。

    find用于找出第一个符合条件的数组成员。它的参数是一个回调函数,所有数组成员依次执行该回调函数,直到找出第一个返回值为true的成员,然后返回该成员。如果没有符合条件的成员,则返回undefined

    这些API还是需要多查阅文档,都是基础知识不用转弯的东西。

    MDN文档

    es6 手册

    回复
    0
  • 仅有的幸福

    仅有的幸福2017-06-26 10:56:10

    pets.find(pet => pet.type ==='Dog' && pet.name === 'Tommy');
    等效于

    pets.find((pet) => {
          return pet.type ==='Dog' && pet.name === 'Tommy';
    });

    箭头函数只有一个参数的时候,小括号可以省略

    回复
    0
  • 取消回复