Skip to content

Commit fa08d83

Browse files
authored
Merge pull request #433 from dmytroony/patch-2
update article.md
2 parents c156564 + 0ef550e commit fa08d83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

1-js/05-data-types/06-iterable/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ alert(arr); // 1,2,3,4,5 (array toString conversion works)
223223
Array.from(obj[, mapFn, thisArg])
224224
```
225225

226-
The optional second argument `mapFn` can be a function that will be applied to each element before adding it to the array, and `thisArg` allows us to set `this` for it.
226+
`mapFn` є необов'язоковим(опціональним) аргументом-функцією, яка буде застосовуватись до кожного елемента перед його додаванням до масиву, а `thisArg` -- також необов'язковий аргумент, який дозволяє встановити `this` для виклику `mapFn`.
227227

228228
Наприклад:
229229

0 commit comments

Comments
 (0)