median
Calculates the median of an array of numbers.
- Find the middle of the array, use
Array.prototype.sort()to sort the values. - Return the number at the midpoint if
Array.prototype.lengthis odd, otherwise the average of the two middle numbers.
Calculates the median of an array of numbers.
Array.prototype.sort() to sort the values.Array.prototype.length is odd, otherwise the average of the two middle numbers.