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