diff --git a/02_selection_sort/javascript/01_selection_sort.js b/02_selection_sort/javascript/01_selection_sort.js index 18567c46..b1e37c6c 100644 --- a/02_selection_sort/javascript/01_selection_sort.js +++ b/02_selection_sort/javascript/01_selection_sort.js @@ -36,4 +36,4 @@ const sourceArray = [5, 3, 6, 2, 10]; const sortedArray = selectionSort(sourceArray); console.log('Source array - ', sourceArray); // [5, 3, 6, 2, 10] -console.log('New sorted array - ', sourtedArray); // [2, 3, 5, 6, 10] \ No newline at end of file +console.log('New sorted array - ', sortedArray); // [2, 3, 5, 6, 10]