Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> 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>