Function that r...LOGIN

Function that returns a value

In the function in the previous section, the results are output through "document.write". What if you want to process the results of the function?

We only need to change the "document.write(sum)" line to the following code:

function add2(x,y)
{
  sum = x + y;   
return sum; //返回函数值,return后面的值叫做返回值。}

You can also store the return value of the calling function through variables, the code is as follows:

result = add2(3,4);//语句执行后,result变量中的值为7。

Note: The parameters and return values ​​in the function are not just numbers, but can also be other types such as strings


Next Section
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>返回值函数</title> <script type="text/javascript"> function app2(x,y) { var sum,x,y; sum = x * y; return sum; } var req1 = app2(5,6); var req2 = app2(2,3); var sumq = req1 + req2; document.write("req1的值:"+req1+"<br/>"); document.write("req2的值:"+req2+"<br/>"); document.write(req1+"与"+req2+"和:"+sumq); </script> </head> <body> </body> </html>
submitReset Code
ChapterCourseware