Skip to content

Commit c6e1e78

Browse files
authored
adding a back-tick ( ` )
Adding a back-tick to correct code highlighter
1 parent 8b14175 commit c6e1e78

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/05-array-methods/3-filter-range-in-place

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ importance: 4
44

55
# Filter range "in place"
66

7-
Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are between `a` and `b. The test is: `a ≤ arr[i] ≤ b`.
7+
Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are between `a` and `b`. The test is: `a ≤ arr[i] ≤ b`.
88

99
The function should only modify the array. It should not return anything.
1010

0 commit comments

Comments
 (0)