Posts by Paulo Francisco de lima Paulyn • 1 point
1 post
-
0
votes4
answers500
viewsA: Return array with numbers larger than the reported Javascript
var array = [70, 2, 9, 65, 5, -1, 0, 89, -5]; var elem = 7; function numMaioresQue(arr, elem) { return arr.filter((item) => { return item >…