Fix formatting

This commit is contained in:
Isabelle Viktoria Maciohsek
2022-01-30 11:40:42 +02:00
parent c56b5a11da
commit 42c503135e
7 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ lastUpdated: 2021-10-13T19:29:39+02:00
Creates an array of numbers in the arithmetic progression, starting with the given positive integer and up to the specified limit.
- Use `Array.from()` to create an array of the desired length, `lim/n`. Use a map function to fill it with the desired values in the given range.
- Use `Array.from()` to create an array of the desired length, `lim / n`. Use a map function to fill it with the desired values in the given range.
```js
const arithmeticProgression = (n, lim) =>