find min & max numbers
in an array
[ sort ]

Find min & max numbers in an array

Write a function that takes an array of numbers as input and returns the lowest and highest number found in that array.


Example ...

Enter an array ...

[5, 4, 6, 8, 7] array

[4, 8] function returns an array

4 → first element of the array contains the minimum value

8 → second element of the array contains the maximum value

Arrays are used to store multiple values in a single variable.

Each value is called an element, and each element has a numeric position in the array, known as its index.

Arrays are zero-indexed, meaning the first element is at index 0, the second at index 1, and so on.

Arrays can contain any data type, including numbers, strings, and objects.

const arr1 = [2, 4, 6]; array

arr1[0]; element at index 0 → 2

arr1[1]; element at index 1 → 4

arr1[2]; element at index 2 → 6

arr1[3]; element at index 3 → undefined index not found


Numbers are used to represent both integer and floating-point values.

Numbers are most commonly expressed in literal forms like 255 or 3.14159 ↴

let num1 = 5; → number

let num2 = 2.5; → number

let num3 = num1 + num2;

console.log(num3); returns ↴

7.5 → number


Find min & max numbers in an array using the in-built sort method.


sort() method sorts the elements of an array as strings.

By default, the elements of the array are converted to strings and sorted in ascending order by comparing their sequences based on their UTF-16 code unit values.

sort() method returns a reference to the original array, so mutating the returned array will mutate the original array as well.

sort() method is stable, it preserves the order of items in an array when their values are the same.

sort() method can sort an array of numbers, strings, or objects with custom functions.

syntax

array.sort()

By default the sort() method sorts the array in ascending order with the elements converted to strings.

This can lead to unexpected results when sorting arrays of numbers.

const arr2 = [2, 11, 1, 22, 33, 3];

arr2.sort(); returns ↴

[1, 11, 2, 22, 3, 33] NOT sorted accurately

To solve this limitation, a comparison callback function can be used to define the desired sorting order.

callback function a function passed into another function as an argument, which is then invoked within the outer function.

When sorting numbers, always use a compare function to ensure numerical comparison.


For sorting an array of numbers in ascending order, the comparison function should subtract the second number from the first number.

syntax

array.sort(compareFunction)

comparison function

(a, b) => a - b compares two elements ↴

a and b

a - b calculates the difference between the two numeric values ↴

If the result is ...

negativea sorted before b

positivea sorted after b

zero → order remains unchanged.

const arr3 = [2, 11, 1, 22, 33, 3];

arr3.sort((a, b) => a - b); returns ↴

[1, 2, 3, 11, 22, 33] → ascending order

The comparison function can be changed to sort in descending order by swapping the elements for comparison to b - a

const arr4 = [2, 11, 1, 22, 33, 3];

arr4.sort((a, b) => b - a); returns ↴

[33, 22, 11, 3, 2, 1] → descending order


Initialize an array from which to find the min & max numbers.

const array1 = [5, 4, 6, 8, 7]; → user input


Define a function findMinMax to find the min & max numbers.

function findMinMax(arr) {}

The function takes an array as input arr and returns an array representing the minimum and maximum values found in that array.

sort() method mutates the original array.

Sort the array in ascending order (a, b) => a - b

const sortedArr = arr.sort((a, b) => a - b)

Return an array containing the minimum and maximum values.

return [sortedArr[0], sortedArr[arr.length - 1]]


Call the function with ↴

findMinMax(array1);


Find the min & max numbers in an array.

const array1 = [5, 8, 6, 4, 7];

function findMinMax(arr) {

const sortedArr = arr.sort((a, b) => a - b);

return [sortedArr[0], sortedArr[arr.length - 1]];

}

call function

findMinMax(array1); returns ↴

[4, 8] → array


Alternative using built-in Math.min() and Math.max() methods.

const array2 = [5, 4, 6, 8, 7]; numbers only

function findMinMax2(arr) {

let min = Math.min(...arr);

let max = Math.max(...arr);

return [min, max];

}

call function

findMinMax2(array2); returns ↴

[4, 8] → array


Alternative using slice() method to prevent mutating original array ↴

arr.sort((a, b) => a - b);

arr.slice().sort((a, b) => a - b);


Alternative using toSorted() method to prevent mutating original array ↴

arr.sort((a, b) => a - b);

arr.toSorted((a, b) => a - b);

Find min & max numbers in an array