亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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; //返回函數(shù)值,return后面的值叫做返回值。}

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

result = add2(3,4);//語(yǔ)句執(zhí)行后,result變量中的值為7。

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


Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>返回值函數(shù)</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