如何从 JavaScript 函数返回一个值?
要在 JavaScript 函数中返回一个值,请在 JavaScript 中使用 return 语句。您需要运行以下代码来学习如何返回一个值 −
示例
<html> <head> <script> function concatenate(name, age) { var val; val = name + age; return val; } function DisplayFunction() { var result; result = concatenate('John ', 20) ; document.write (result ); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "DisplayFunction()" value = "Result"> </form> </body> </html>
广告