Be the first user to complete this post
|
Add to List |
Array filterUntil function implementation for javascript
This is not natively available in javascscript, so I just made a tiny utility function. It returns an array of 1 item so you can use it consistently with frameworks like Rx etc which prefer to work with Arrays. This effectively also gives you an idea of how to break from a loop, especially an alternative to using a forEach.
function filterUntil(arr, condition) {
for (var item of arr) {
if (condition(item)) {
return [item];
}
}
return [];
}
Why is this useful?
The advantage of using this over the primitive filter is that if you only care about the first matched value, you save computation time by not iterating through the entire array.Example usage
filterUntil([1,2,3,4], function(item) { console.log('here'); return item === 3})
Also Read:
- simple css reset
- Two column layout in css
- Split a string in javascript when both comma and spaces are present
- window vs document
- Applying floats to inline elements