為什麼這樣寫就會變成undefined,return是什麼魔力看不明白
為什麼這樣寫就會變成undefined,return是什麼魔力看不明白
<!DOCTYPE HTML> <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>函数</title> <script type="text/javascript"> function com(a,b) { if (a>b) { document.write(a); } else if (b>a) { document.write(b); } else { document.write("兩者一樣大喔"); } } res1 = com(5,4) res2 = com(6,3) document.write(" 5 和 4 的较大值是:"+res1+"<br>"); document.write(" 6 和 3 的较大值是:"+res2 ); </script> </head> <body> </body> </html>