function filterDemo(orders) { | |
const ordersWithQuantityOver30 = orders.filter(order => order.quantity > 30); | |
printOrders(ordersWithQuantityOver30); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment