distinguindo números positivos em JavaScript
arr.filter(i => {return i >= 0})
Blue Badger
arr.filter(i => {return i >= 0})