-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03_arrayFilter.js
30 lines (24 loc) · 956 Bytes
/
03_arrayFilter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// https://egghead.io/lessons/rxjs-the-array-filter-method
/* THIS IS THE OLD FUNCTION */
// function getStocksOver(stocks, minPrice) {
// var results = [];
// stocks.forEach(function(stock) {
// if(stock.price >= minPrice) { // this line here is the 'predicate'
// results.push(stock);
// }
// });
// return results;
// }
/* THIS IS THE NEW FUNCTION, ACTUALLY EQUIVALENT TO THE ONE ABOVE */
function getStocksOver(stocks, minPrice) {
return stocks.filter(function(stock){
return stock.price >= minPrice; /* this True/False result from the 'predicate' function
determines if the item is added to the (new) output array */
});
}
var expensiveStocks = getStocksOver(
[{symbol: "XFX", price: 240.22, volume: 23432},
{symbol: "TNZ", price: 332.19, volume: 234},
{symbol: "JKJ", price: 120.22, volume: 5323}],
150.00);
console.log(JSON.stringify(expensiveStocks));