Update article.md

fixed typo 'stringss' in 1-js/05-data-types/05-array-methods/article.md
This commit is contained in:
atimidguy 2019-08-21 14:55:46 +08:00 committed by GitHub
parent a38ab40724
commit 05368cea2b
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: