我正在尝试使用mocha框架编写测试并具有此功能
this.checkReorder = function () {
var result = [];
this.products.forEach(function (p) {
if (p.quantity <= p.reorder_level) {
result.push(p) ;
}
})
return result ;
}
我不理解if语句
所以,如果我有这些产品
cat.addProduct(new Product("Product 1", 100, 10.00, 10 ) );
cat.addProduct(new Product("Product 2", 100, 10.00, 10 ) );
cat.addProduct(new Product("Product 3", 100, 10.00, 10 ) );
当我使用.reorder_level时,结果是什么?
答案 0 :(得分:0)
我错过了一个解释过的页面,抱歉。