JavaScript 함수에서 값을 반환하려면 return을 사용하세요. 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>