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

Introduction to the use of javaScript arguments object_Basic knowledge

WBOY
Release: 2016-05-16 17:19:36
Original
854 people have browsed it

ECMAScript functions do not mind how many parameters are passed in, and errors will not occur due to inconsistent parameters. In fact, the function body can receive the parameters passed in through the arguments object.

Copy code The code is as follows:

function box() {
return arguments[0 ] ' | ' arguments[1]; //Get the value of each parameter
}

alert(box(1,2,3,4,5,6)); //Pass parameters

The length attribute of the arguments object can get the number of parameters.
function box() {
return arguments.length; //Get 6
}

alert(box(1,2,3,4,5,6));


We can use the length attribute to intelligently determine how many parameters there are, and then apply the parameters appropriately.
For example, you want to implement an addition operation to accumulate all the numbers passed in, but the number of numbers is uncertain.
Copy code The code is as follows:

function box() {
var sum = 0 ;
if (arguments.length == 0) return sum; //If there are no parameters, exit
for(var i = 0;i < arguments.length; i ) { //If there are, accumulate
sum = sum arguments[i];
}
return sum; //Return the cumulative result
}

alert(box(5,9,12));

The functions in ECMAScript do not have the function overloading function like other high-level languages.
function box(num) {
return num 100;
}
function box (num) { //This function will be executed
return num 200;
}
alert (box(50)); //return result
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!