Created
February 7, 2017 01:30
-
-
Save rrmdn/d1c06ed0f4589ebf4f388eb472c2c155 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const availableProducts = products.filter(product => ( | |
| (product.quantity !== 0) && | |
| (product.metadata.status === 'good') | |
| )); | |
| const damagedProducts = products.filter(product => ( | |
| (product.quantity !== 0) && | |
| (product.metadata.status === 'damaged') | |
| )); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment