Test(sortBydir):correct subject of sortBydir

This commit is contained in:
zainabdnaya 2023-10-25 12:34:15 -04:00
parent 2e71a8cc94
commit dc66803b33
1 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ If the values of the array is not an integer, return false.
### Expected Function
```js
function sortReloaded(arrayIntg,dir)
function sortBydir(arrayIntg,dir)
```
@ -24,8 +24,8 @@ Here is a program to test your function.
```js
const inputArray = [4, 2, 8, 1, 5];
const ascendingResult = orderArray(inputArray);
const descendingResult = orderArray(inputArray, 'desc');
const ascendingResult = sortBydir(inputArray);
const descendingResult = sortBydir(inputArray, 'desc');
console.log(ascendingResult);
console.log(descendingResult);
```
@ -37,4 +37,4 @@ $ node index.js
[1, 2, 4, 5, 8]
[8, 5, 4, 2, 1]
$
```
```