Please note, this is a STATIC archive of website www.tutorialrepublic.com from September 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Function Expression</title> </head> <body> <script> // Function Declaration function getSum(num1, num2) { var total = num1 + num2; return total; } document.write(getSum(2, 3) + "<br>"); // Prints: 5 // Function Expression var getSum = function(num1, num2) { var total = num1 + num2; return total; } document.write(getSum(4, 6)); // Prints: 10 </script> </body> </html>