Home  >  Article  >  Web Front-end  >  How to use slice method

How to use slice method

不言
不言Original
2019-01-29 15:23:0810016browse

slice() is a method of all array instances in How to use slice method. It can return selected elements from an existing array. It has two parameters begin and end, both of which are optional. Let’s take a look below. Specific content.

How to use slice method

Let’s take a look at the basic syntax of the slice() method

array.slice( begin [,end] );

begin: An integer used to specify the starting position of the selection ( The index of the first element is 0). You can use negative values ​​to select from the end of the array. If omitted, the default value is "0" and is optional.

end: End the index obtained from zero.

Let’s look at a specific example

The code is as follows




	

How to use slice method Array slice Method

The running results are as follows

How to use slice method

This article The article ends here. For more exciting content, you can pay attention to the relevant column tutorials on the PHP Chinese website! ! !

The above is the detailed content of How to use slice method. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use eval functionNext article:How to use eval function