किसी JavaScript फ़ंक्शन से मान वापस करने के लिए, रिटर्न का उपयोग करें जावास्क्रिप्ट में बयान। मान वापस करने का तरीका जानने के लिए आपको निम्न कोड चलाना होगा -
उदाहरण
<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>