Html
File D:/my.html
<html>
<body>
<!-- download the file my.js -->
<script src="my.js"></script>
</body>
</html>
JavaScript
File D:/my.js
function calculate_sum(a, b, c)
{
console.log("---- We calculate the amount ---------");
// debugging
console.log("a=" + a);
console.log("b=" + b);
console.log("c=" + c);
// we calculate the amount
var sum = a + b + c;
// debugging
console.log("sum=" + sum);
return sum;
}
// calculate
calculate_sum(10, 6, 7);
calculate_sum(2, 1, 67);