Array Sorting Sort array of number in asscending order Installation import sortArray from "array-sorting"; Sample usage import sortArray from "array-sorting"; const unsortedArray = [5, 3, 8, 1, 9]; const sortedArray = sortArray(unsortedArray); console.log(`Sorted array:- ${sortedArray}`)