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