Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/simplestatistics/index.js>extentSorted

simple statistics for node & browser javascript
Latest
function extentSorted
import { extentSorted } from "https://deno.land/x/simplestatistics@v7.8.3/index.js";

The extent is the lowest & highest number in the array. With a sorted array, the first element in the array is always the lowest while the last element is always the largest, so this calculation can be done in one step, or constant time.

Examples

extentSorted([-100, -10, 1, 2, 5]); // => [-100, 5]

Parameters

x

input