Use slice to encapsulate array methods in JS
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!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
