Home > Web Front-end > JS Tutorial > body text

How to use slice() in js

小云云
Release: 2018-03-13 17:22:25
Original
10915 people have browsed it

This article mainly shares with you how to use slice() in js. slice() obtains a new array through the index position. This method does not modify the original array, but only returns a new subarray.

Usage: arrayObj.slice(start,end)

  • arrayObj - original array;

  • start - required; sets the starting position of the new array; if it is a negative number, it means counting from the end of the array (-1
    refers to the last element, -2 refers to the second to last element, and so on).

  • end - Optional; set the end position of the new array; if this parameter is not filled in, it will default to the end of the array; if it is a negative number, it means counting from the end of the array (- 1 refers to the last element, -2
    refers to the second to last element, and so on).

例1:获取仅包含最后一个元素的子数组var arr=[1,2,3,4,5];
arr.slice(-1);//[5]例2:获取不包含最后一个元素的子数组var arr=[1,2,3,4,5];
arr.slice(0, -1);//[1,2,3,4]例3:获取包含 从第二个元素开始的所有元素的子数组var arr=[1,2,3,4,5];
arr.slice(1);//[2,3,4,5]
Copy after login

slice() obtains a new array through the index position. This method does not modify the original array, but only returns a new subarray.

Related recommendations:

php function array_slice() that returns the selected part of the array

How to use the slice() function in javascript Detailed explanation of interception array usage examples

10 recommended articles about slice()

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!