In JavaScript, function refers to "function", which is a set of code blocks that perform specific tasks (with specific functions) and can be reused; functions do not run automatically and need to be called through the function name. to run. Functions can be stored in variables, objects, arrays, and passed as parameters to other functions.
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
JS function (Function) is a set of code blocks that perform specific tasks (with specific functions) and can be reused; functions do not run automatically and need to be called through the function name to run.
Functions can also be stored in variables, objects, and arrays, and functions can also be passed as parameters to other functions, or returned from other functions.
In JavaScript, in addition to using built-in functions, we can also create our own functions (custom functions) and then call this function where needed. This not only avoids writing repeated code, but also benefits the code. later maintenance.
JS Define functions
JS function declaration needs to start with the function keyword, followed by the name of the function to be created. Use a space to separate the function keyword and the function name. , after the function name is a bracket (), the brackets are used to define the parameters to be used in the function (use commas to separate multiple parameters), a function can have up to 255 parameters, and finally a curly bracket { }, the function body in curly braces is used to define the function body (that is, the code to implement the function), as shown below:
function functionName(parameter_list) { // 函数中的代码 }
The sample code is as follows:
function sayHello(name){ document.write("Hello " + name); }
In the above example, a function sayHello is defined (), this function needs to receive a parameter name, and calling this function will output "Hello..." on the page.
JS Calling Function
Once a function is defined, we can call it anywhere in the current document. Calling a function is very simple, just add a bracket after the function name, such as alert(), write(). Note that if parameters are specified in parentheses after the function name when defining the function, then the corresponding parameters need to be provided in parentheses when calling the function.
The sample code is as follows:
function sayHello(name){ document.write("Hello " + name); } // 调用 sayHello() 函数 sayHello('PHP中文网');
Tip: JavaScript is case-sensitive, so the function keyword must be lowercase when defining a function, and the function must be called in the same size as when it was declared. Write to call the function.
Default values of parameters
When defining a function, you can set a default value for the parameters of the function, so that when we call this function, if it is not provided parameter, this default value will be used as the parameter value, as shown in the following example:
function sayHello(name = "World"){ document.write("Hello " + name); } sayHello(); // 输出:Hello World sayHello('PHP中文网'); // 输出:Hello PHP中文网
JS function return value
In the function, you can use the return statement to return a value (The running result of the function) is returned to the program that called the function. This value can be of any type, such as arrays, objects, strings, etc. For functions that return a value, we can use a variable to receive the return value of the function. The sample code is as follows:
function getSum(num1, num2){ return num1 + num2; } var sum1 = getSum(7, 12); // 函数返回值为:19 var sum2 = getSum(-5, 33); // 函数返回值为:28
Tip: The return statement is usually defined at the end of the function. When the function runs to the return statement It will stop running immediately and return to the place where the function was called to continue execution.
In addition, a function can only have one return value. If you want to return multiple values, you can put the values into an array and then return the array, as shown in the following example:
function division(dividend, divisor){ var quotient = dividend / divisor; var arr = [dividend, divisor, quotient] return arr; } var res = division(100, 4) document.write(res[0]); // 输出:100 document.write(res[1]); // 输出:4 document.write(res[2]); // 输出:25
JS function expression
Function expression is very similar to declaring variables. It is another form of declaring a function. The syntax format is as follows:
var myfunction = function name(parameter_list){ // 函数中的代码 };
Parameters The description is as follows:
myfunction: variable name, which can be used to call the function after the equal sign;
name: function name, which can be omitted (Under normal circumstances we will also omit it), if omitted, the function will become an anonymous function;
parameter_list: is the parameter list, a function can have up to 255 parameters .
The sample code is as follows:
// 函数声明 function getSum(num1, num2) { var total = num1 + num2; return total; } // 函数表达式 var getSum = function(num1, num2) { var total = num1 + num2; return total; };
The two functions in the above example are equivalent, and their functions, return values, and calling methods are the same.
Note: In a function declaration, there is no need to place a semicolon after the right curly brace, but if a function expression is used, it should end with a semicolon at the end of the expression.
Although function declarations and function expressions look very similar, they operate differently, as shown in the following example:
declaration(); // 输出: function declaration function declaration() { document.write("function declaration"); } expression(); // 报错:Uncaught TypeError: undefined is not a function var expression = function() { document.write("function expression"); };
As shown in the above example, if the function expression If the formula is called before it is defined, an exception (error) will be thrown, but the function declaration can run successfully. This is because JavaScript will parse the function declaration before the program is executed, so it is feasible to call the function before or after the function declaration. A function expression assigns an anonymous function to a variable, so before the program executes the expression, it is equivalent to the function not being defined and therefore cannot be called.
[Recommended learning: javascript advanced tutorial]
The above is the detailed content of What is javascript function. For more information, please follow other related articles on the PHP Chinese website!