Merge pull request #1258 from atimidguy/atimidguy-patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2019-08-21 10:21:00 +03:00 committed by GitHub
commit 192c4115fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,7 @@ arr.slice(start, end)
It returns a new array copying to it all items from index `start` to `end` (not including `end`). Both `start` and `end` can be negative, in that case position from array end is assumed.
It's similar to a string method `str.slice`, but instead of substringss it makes subarrays.
It's similar to a string method `str.slice`, but instead of substrings it makes subarrays.
For instance: