I have two arrays : A E B
A = [1,2,3...]
B = [7,5,1...]
When I do this subtraction it has the correct subtraction return:
console.log(A[0] - B[0]);
But when I play in the loop it does not work:
while (i = 0) {
A[i] - B[i]
}
...
asked by
23.11.2018 / 12:09