See More

/** * Selection Sort **/ function selectionSort(arr) { for(let i=0;iarr[j]) { let tem = min; min = arr[j]; arr[j] = tem; } } arr[i] = min; } return arr; } module.exports = selectionSort;