This article introduces to you about using slice to encapsulate array methods in JS. It has certain reference value. Friends in need can refer to it.
Function of slice method
// 1) : Array interception
// 2) :slice(m,n): Starting from array index m, intercept to index n, but not included n;[Include before and not after]
// slice(m): Starting from index m, intercept to the end;
// slice(): clone slice(0) of the array;
// // Negative index: Make the current length negative;
// 3): The return value is the intercepted array
// 4): The original array does not change;
/**
* First of all: first distinguish several situations of slice and the idea of slice
* The parameters passed can be other types of data, as long as they can be converted into valid numbers (so the parameter type requirements are more flexible)
* Secondly, it should be noted that only the first and second parameters are valid parameters, the third and subsequent parameters will have no impact on the intercepted result
Processing of parameters:
* Let’s temporarily give the first parameter to the variable start, and the second parameter to the variable end
* 1. When parameter 1 and parameter 2 are both undefined or one of them is undefined Case
* Case 1: When parameter 1 is undefined, directly take start=0
* Case 2: When parameter 2 is undefined, directly take end=this.length
2. When neither parameter 1 nor parameter 2 is undefined
* Case 1: When the first parameter is a negative number: start takes the maximum value of this.length and the parameters; when the first When the parameter is greater than or equal to 0, start directly takes itself
* Case 2: When the second parameter is a negative number, end takes the sum of this.length and end; when the parameter is greater than 0, end takes this.length With the minimum value in end
Processing of interval length: Set size=end-start
* Case 1: When the interval length is less than or equal to 0, return empty directly Array
* Case 2: When the interval length is greater than 0, whether for a string or an array, create an array with a length of size, assign values to the new array from start to end, and return the new array
@type {Array}
*/
Attached code:
Array.prototype.mySlice = function (start,end) { var newAry = [];//创建一个变量用来接收返回值 var len = this.length;//变量接收当前数组的长度 //先对参数为undefined的情况进行处理 start = (start !== undefined)?start:0; end = (end !== undefined)?end:len; //对于参数的处理,采用三目运算符,由于在与0判断的时候自动转换为数字再进行判断,所以直接与0比较即可 start = (start>=0)?start:Math.max(0,len+start); end = (end>=0)?Math.min(end,len):len+end; var size = end - start;//用一个变量接收截取区间的长度 if(size>0){ //当区间长度大于0时,实例化一个长度为size的数组,并赋值给newAry newAry = new Array(size); //遍历数组,将当前数组[start,end)区间上的值依次赋值给newAry for(var i = 0;i<size;i++){ newAry[i] = this[i+start]; } }else{ //当区间长度小于等于0的情况下,直接返回空数组 return newAry; } return newAry; };
Related recommendations:
js code to implement date picker
For js Further understanding of closure
The above is the detailed content of Use slice to encapsulate array methods in JS. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
