You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/exercises/07-arrays-exercises.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -439,7 +439,7 @@ The following lines should help you see if your function works correctly.
439
439
440
440
process.stdout.write('\n*7·7.\n');
441
441
/*
442
-
*7·7. Create a function called 'bottom3' that takes an array (of at least 3 strings) and returns the last 3 strings that occur in reverse alphabetical order.
442
+
*7·7. Create a function called 'bottom3' that takes an array (of at least 3 strings) and returns the last 3 strings that occur in alphabetical order.
443
443
444
444
The following lines should help you see if your function works correctly.
445
445
*/
@@ -453,7 +453,7 @@ The following lines should help you see if your function works correctly.
453
453
454
454
process.stdout.write('\n*7·71.\n');
455
455
/*
456
-
*7·71. Create a function called 'bottomN' that takes a number (n) and an array (of at least n strings). It should return the last n strings that occur in reverse alphabetical order.
456
+
*7·71. Create a function called 'bottomN' that takes a number (n) and an array (of at least n strings). It should return the last n strings that occur in alphabetical order.
457
457
458
458
The following lines should help you see if your function works correctly.
0 commit comments