👾 some change to summary section

This commit is contained in:
Lavrentiy Rubtsov 2022-06-20 23:46:24 +06:00 committed by GitHub
parent 04c113ce33
commit 3e72030521
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -767,7 +767,7 @@ A cheat sheet of array methods:
- `reduce/reduceRight(func, initial)` -- calculate a single value over the array by calling `func` for each element and passing an intermediate result between the calls.
- Additionally:
- `Array.isArray(arr)` checks `arr` for being an array.
- `Array.isArray(value)` checks `value` for being an array, if so return true, otherwise false.
Please note that methods `sort`, `reverse` and `splice` modify the array itself.