自定义的 coalesce 函数 coalesceFactory – JavaScript 实用代码片段

返回自定义的 coalesce 函数,该函数返回从提供的参数验证函数返回 true 的第一个参数。

使用 Array.find() 返回从提供的参数验证函数返回 true 的第一个参数。

const coalesceFactory = valid => (...args) => args.find(valid);
const customCoalesce = coalesceFactory(_ => ![null, undefined, '', NaN].includes(_));
customCoalesce(undefined, null, NaN, '', 'Waldo'); // "Waldo"

更多代码 JavaScript 实用代码片段 请查看 https://www.7psus5.com/30-seconds-of-code/

赞(0) 打赏
未经允许不得转载:WEBTian开发 » 自定义的 coalesce 函数 coalesceFactory – JavaScript 实用代码片段

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Tian开发相关广告投放 更专业 更精准

联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏