-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: "`.slice()`" | ||
description: "Копирум массив частично или полностью." | ||
authors: | ||
- doka-dog | ||
related: | ||
- js/array-filter | ||
- js/array-length | ||
- js/array-reverse | ||
tags: | ||
- doka | ||
- placeholder | ||
--- | ||
|
||
## Кратко | ||
|
||
Метод массива `.slice` возвращаеет копию части массива или массива целиком. Результат зависит от переданных аргументов. Не меняет исходный массив. | ||
|
||
## Пример | ||
|
||
```js | ||
const array = ['Звёздный Лорд', 'Ракета', 'Грут', 'Космо'] | ||
|
||
let result = array.slice(2, 3) | ||
|
||
console.log(result) // ['Грут'] | ||
``` | ||
|
||
## Как пишется | ||
|
||
Метод может работать без аргументов. В этом случае результатом будет полная копия исходного массива. | ||
|
||
Может принимать два необязательных аргумента: | ||
|
||
- Начало — с какого индекса начинать копирование. | ||
- Конец — по какой индекс включительно копировать. | ||
|
||
Если второй аргумент не задан, то копируется всё от начального индекса, заданного аргументом, до конца массива. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,6 +105,7 @@ groups: | |
- pop | ||
- shift | ||
- unshift | ||
- array-slice | ||
- name: "Объекты" | ||
items: | ||
- object | ||
|