加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2-2.lodash.js 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
YanqingLiu 提交于 2020-10-14 15:26 . test
const fp = require('lodash/fp')
// 数据
// horsepower马力,dollar_value价格,in_stock库存
const cars = [
{name: 'Ferrari FF', horsepower:660, dollar_value:700000, in_stock:true},
{name: 'Spyker C12 Zagato', horsepower:650, dollar_value:648000, in_stock:false},
{name: 'Jaguar XKR-S', horsepower:550, dollar_value:132000, in_stock:false},
{name: 'Ferrari', horsepower:525, dollar_value:114200, in_stock:false},
{name: 'Aston Martin One-77', horsepower:750, dollar_value:1850000, in_stock:true}
]
const isFirstName = fp.flowRight(fp.prop('name'),fp.first)
console.log(isFirstName(cars));
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化