Skip to content

Commit 33cca1b

Browse files
authored
Fix confusion in the task
1 parent 2e5fa78 commit 33cca1b

File tree

1 file changed

+2
-2
lines changed
  • 1-js/05-data-types/05-array-methods/4-sort-back

1 file changed

+2
-2
lines changed

1-js/05-data-types/05-array-methods/4-sort-back/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ importance: 4
22

33
---
44

5-
# Sort in the reverse order
5+
# Sort in decreasing order
66

77
```js
88
let arr = [5, 2, 1, -10, 8];
99

10-
// ... your code to sort it in the reverse order
10+
// ... your code to sort it in decreasing order
1111

1212
alert( arr ); // 8, 5, 2, 1, -10
1313
```

0 commit comments

Comments
 (0)