Calculate the min, max, total, average and count of input array data.
data
const { total, min, max, avg, count } = numberArrayCompute([ 1, 2, 3 ]); Copy
const { total, min, max, avg, count } = numberArrayCompute([ 1, 2, 3 ]);
Calculate the min, max, total, average and count of input array
data
.