Compute the element-wise absolute differences between two arrays of numbers.
array to compare
return the array difference a1-a2
arrayDifferences([1,2,3],[3,2,1]); // [2,0,2] Copy
arrayDifferences([1,2,3],[3,2,1]); // [2,0,2]
Compute the element-wise absolute differences between two arrays of numbers.