We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Find the smallest and largest values.
Similar: mean, median, modes, variance, range.
function range(...xs) // xs: a list of numbers
const xmath = require('extra-math'); xmath.range(1, 7); // → 6 xmath.range(1, 7, 6); // → 6 xmath.range(1, 7, 8, 6); // → 7