我使用WebStorm 2017.3.1
关于此代码
router.get('/costs/:id', ((req, res) => {
let costsId = Number(req.params.id);
let cost = costs.filter(cost => cost.id === costsId);
res.send(cost);
})
);

我在costs.filter
上收到弱警告:
未解决的函数或方法过滤器()