We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24411a8 commit 5b0e2aeCopy full SHA for 5b0e2ae
1-js/05-data-types/05-array-methods/4-sort-back/solution.md
@@ -3,7 +3,7 @@
3
```js run
4
let arr = [5, 2, 1, -10, 8];
5
6
-arr.sort((a,b) => b - a);
+arr.sort((a, b) => b - a);
7
8
alert( arr );
9
```
0 commit comments