Calculates the change of two arrays.
The first array
The second array
const result = Chalkboard.stat.change([2, 4, 8], [3, 8, 4]); // Returns [1, 4, -4] Copy
const result = Chalkboard.stat.change([2, 4, 8], [3, 8, 4]); // Returns [1, 4, -4]
Calculates the change of two arrays.