Javascript examples for Function:Function Recursion
Chain call functions
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript"> window.onload=function(){/*from ww w. ja v a2 s .c o m*/ function name() { return 5; } function anotherone(num) { return num + 3; } function horse(num) { return num + 5; } console.log(horse(anotherone(name()))); } </script> </head> <body> </body> </html>