最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to pass lambda as parameter in Javascript? - Stack Overflow

programmeradmin3浏览0评论

I have a big function in Javascript that I need to repeat the same logic, except for the line bellow, that is different:

config.some(x => x.site === text)

The other function will do the same thing, but instead of filtering by SITE, it will filter by NAME:

config.some(x => x.name === text)

I want to pass SITE or NAME as a parameter to the method. How can I do this?

I was hoping for something like this:

myMethod(lambda) {
   config.some(lambda === text)
}

And call like:

this.myMethod(x => x.site);

I have a big function in Javascript that I need to repeat the same logic, except for the line bellow, that is different:

config.some(x => x.site === text)

The other function will do the same thing, but instead of filtering by SITE, it will filter by NAME:

config.some(x => x.name === text)

I want to pass SITE or NAME as a parameter to the method. How can I do this?

I was hoping for something like this:

myMethod(lambda) {
   config.some(lambda === text)
}

And call like:

this.myMethod(x => x.site);
Share Improve this question asked Nov 7, 2019 at 19:35 alansiqueira27alansiqueira27 8,55417 gold badges71 silver badges120 bronze badges 1
  • 1 myMethod(lambda) { return config.some(x => lambda(x) === text); } – ASDFGerte Commented Nov 7, 2019 at 19:43
Add a ment  | 

2 Answers 2

Reset to default 9

If you want to pass the parameter name it could be done like this:

myMethod(key) {
   config.some(x => x[key] === text)
}
myMethod('name');

A "lambda" passing implementation would look like:

myMethod(lambda) {
   config.some(x => lambda(x) === text)
}
const nameLambda = (x) => x.name;
myMethod(nameLambda);

You can pass the lambda argument directly to the some function.
Here is an example with filter.

function methodWithLambda(lambda) {
  let data = [
    1,2,3,4,5,6,7,8
  ]
  
  return data.filter(lambda);
}

console.log(methodWithLambda(x => x > 4));
console.log(methodWithLambda(x => x < 7));

发布评论

评论列表(0)

  1. 暂无评论