Home Web Front-end JS Tutorial JavaScript function parameter restrictions description_javascript skills

JavaScript function parameter restrictions description_javascript skills

May 16, 2016 pm 06:15 PM
Function parameters limit

Test results:

There are 65535 under safari. That is ushort to store (2 bytes 16 1). More are ignored.

Other browsers are at least int.MaxValue. It is said that FireFox even uses long to maintain real parameters.
Other browsers may be int or maybe uint. Don’t worry about it. After all, we know the bottleneck is at 65535.

Based on the above foundation. You can consider using [].push.apply(a,b) instead of a=a.concat(b) when connecting arrays;
We just need to note that for safari, the length of b cannot exceed 65535.
The problem with
concat is that the new array generated traverses the two arrays a and b, and then puts the elements of a and b in sequence.

Test code:
var count = 100000, a = [1,2,3], b = [4,5,6], r = [], i, d;

d = new Date ;
for (i = count; i-- ;){
a.concat(b);
}
r[0] = new Date - d;


d = new Date ;
for (i = count; i-- ;){
r.push.apply(a,b );
//a = [1,2,3] ;
}
r[1] = new Date - d;

alert(r);

It can be concluded that even ancient browsers such as ie6 chrome2 safari 3 firefox 2 are completely victorious in push. Even if some browsers are removed //a = [1,2 ,3]; Comment part. The efficiency is actually better than concat. Such as chrome7 dev and safari 5.
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to remove comment restrictions on video accounts? What is the word limit for comments on a video account? How to remove comment restrictions on video accounts? What is the word limit for comments on a video account? Mar 22, 2024 pm 02:11 PM

With the popularity of video accounts on social media, more and more people are beginning to use video accounts to share their daily lives, insights and stories. However, some users may experience comments being restricted, which can leave them confused and dissatisfied. 1. How to remove comment restrictions on video accounts? To lift the restriction on commenting on a video account, you must first ensure that the account has been properly registered and real-name authentication has been completed. Video accounts have requirements for comments. Only accounts that have completed real-name authentication can lift comment restrictions. If there are any abnormalities in the account, these issues need to be resolved before comment restrictions can be lifted. 2. Comply with the community standards of the video account. Video accounts have certain standards for comment content. If the comment involves illegal content, you will be restricted from speaking. To lift comment restrictions, you need to abide by the community of the video account

The relationship between C++ function parameter passing methods and thread safety The relationship between C++ function parameter passing methods and thread safety Apr 12, 2024 pm 12:09 PM

Function parameter passing methods and thread safety: Value passing: Create a copy of the parameter without affecting the original value, which is usually thread safe. Pass by reference: Passing the address, allowing modification of the original value, usually not thread-safe. Pointer passing: Passing a pointer to an address is similar to passing by reference and is usually not thread-safe. In multi-threaded programs, reference and pointer passing should be used with caution, and measures should be taken to prevent data races.

C++ compilation error: Duplicate definition of function parameters, how to solve it? C++ compilation error: Duplicate definition of function parameters, how to solve it? Aug 22, 2023 pm 12:33 PM

As an efficient programming language, C++ is widely used in various fields because of its reliability. However, in the process of writing code, we often encounter some compilation errors, and repeated definition of function parameters is one of them. This article will detail the reasons and solutions for repeatedly defining function parameters. What is repeatedly defining function parameters? In C++ programming, function parameters refer to variables or expressions that appear in function definitions and declarations and are used to accept actual parameters passed when a function is called. When defining a function's argument list, each argument must be

Detailed explanation of C++ function parameters: implementation methods, advantages and disadvantages of indefinite parameter passing Detailed explanation of C++ function parameters: implementation methods, advantages and disadvantages of indefinite parameter passing Apr 28, 2024 am 09:48 AM

C++ indefinite parameter passing: implemented through the... operator, which accepts any number of additional parameters. The advantages include flexibility, scalability, and simplified code. The disadvantages include performance overhead, debugging difficulties, and type safety. Common practical examples include printf() and std::cout, which use va_list to handle a variable number of parameters.

How to set up a CentOS system to restrict user modifications to system logs How to set up a CentOS system to restrict user modifications to system logs Jul 05, 2023 pm 03:43 PM

How to set up the CentOS system to restrict users from modifying the system log. In the CentOS system, the system log is a very important source of information. It records the system's operating status, error messages, warnings, etc. In order to protect the stability and security of the system, we should restrict users from modifying system logs. This article will introduce how to set up the CentOS system to restrict the modification permissions of the system log. 1. Create user groups and users. First, we need to create a user group specifically responsible for managing system logs, and a user group for managing system logs.

How to use JavaScript to drag and zoom images while limiting them to the container? How to use JavaScript to drag and zoom images while limiting them to the container? Oct 20, 2023 pm 04:19 PM

How does JavaScript implement dragging and zooming of images while limiting them to the container? In web development, we often encounter the need to drag and zoom images. This article will introduce how to use JavaScript to implement dragging and zooming of images and limit operations within the container. 1. Drag the picture To drag the picture, we can use mouse events to track the mouse position and move the picture position accordingly. The following is a sample code: //Get the picture element varimage

Detailed explanation of C++ function parameters: the essence and precautions of the outgoing mechanism Detailed explanation of C++ function parameters: the essence and precautions of the outgoing mechanism Apr 27, 2024 pm 12:00 PM

There are two ways to pass function parameters in C++: call by value (which does not affect the actual parameters) and call by reference (which affects the actual parameters). Passing out parameters is achieved by passing a reference or pointer, and the function can pass the value to the caller by modifying the variable pointed to by the parameter reference or pointer. Please note when using: The outgoing parameters must be clearly declared, can only correspond to one actual parameter, and cannot point to local variables within the function. When calling by passing a pointer, be careful to avoid wild pointers.

What should I do if the maximum size of documents that WPS members can upload exceeds the limit? What should I do if the maximum size of documents that WPS members can upload exceeds the limit? Mar 20, 2024 pm 06:40 PM

WPS is an office software that integrates comprehensive operations. You can now download WPS for use, but if you want to have more functions, you need to register as a member. Some people may wonder what is the maximum file size that a WPS member can upload? If you are a WPS member user, you can upload files up to 1G each time, and all files can add up to 365G. There may be some differences in different terminals, but the overall display is basically similar. What should I do if I cannot upload beyond the limit? We will explain it next. 1. When uploading files, such as cloud documents, there is a certain amount of space. If it exceeds the size, it cannot be uploaded. 2. Click on the membership logo, purchase membership according to your needs, and expand the space. 3. Coupons may appear occasionally, so don’t forget to use them.

See all articles