Posts by Aprendiz • 15 points
3 posts
-
-2
votes2
answers91
views -
-3
votes1
answer40
views -
2
votes2
answers383
viewsQ: Subtraction of arrays
I have two arrays: A AND B A = [1,2,3...] B = [7,5,1...] When I do this subtraction has the correct subtraction return: console.log(A[0] - B[0]); But when I play in the loop it doesn’t work: while…