We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f49969 + 5b0e2ae commit ce3e1e9Copy full SHA for ce3e1e9
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