Posts by Nay Maciel • 11 points
1 post
-
1
votes3
answers2043
viewsA: I can’t solve a javascript exercise
My answer is: function eNumeroDaSorte (numero) { return (numero > 0) && ((numero % 3 == 0) || (numero % 2 == 0)) && (numero !== 15); } number can’t be >= 0 because 0 is not a…