ex01rachel
v1.2.0
Published
in-class exercise 01 by Rachel
Readme
Package for practice
This packages uses ES Modules, which means that you will need to import the default package in order to use it.
Example usage:
npm install ex01racheland then in your script file.
import SortArray from "ex01rachel";
function Sort(arr) {
console.log(SortArray(arr));
}
Sort([5, 3, 7, 1, 4]);
Sort([25, 33, 17, 81, 4]);