एक JavaScript फ़ंक्शन में वैकल्पिक वापसी हो सकती है बयान। यदि आप किसी फ़ंक्शन से कोई मान वापस करना चाहते हैं तो यह आवश्यक है। यह स्टेटमेंट किसी फंक्शन का आखिरी स्टेटमेंट होना चाहिए।
उदाहरण
जावास्क्रिप्ट में रिटर्न स्टेटमेंट के साथ काम करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<html> <head> <script> function concatenate(first, last) { var full; full = first + last; return full; } function DisplayFunction() { var result; result = concatenate('John', ' Wright'); document.write (result ); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "DisplayFunction()" value = "Call Function"> </form> </body> </html>