Created
July 20, 2017 14:14
-
-
Save sandrooliveira/75bd88b05058731cc13c55e4330236be 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 produtos = [ | |
{ | |
id: 1, | |
preco: 10.0, | |
qtd: 2 | |
}, | |
{ | |
id: 2, | |
preco: 10.0, | |
qtd: 2 | |
}, | |
{ | |
id: 3, | |
preco: 10.0, | |
qtd: 2 | |
}, | |
{ | |
id: 4, | |
preco: 10.0, | |
qtd: 0 | |
} | |
] | |
const checkQtd = value => value.qtd > 0 | |
const prodComQtd = produtos.filter(checkQtd) | |
console.log(prodComQtd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Os três estão certos Sandro.