programming-examples/js/Others/A function with arguments, that returns a value.js

20 lines
263 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
<html>
<head>
<title>Happy Codings :-) JavaScript Code Examples</title>
<script type="text/javascript">
function total(a,b){
return a + b
}
</script>
</head>
<body>
<script type="text/javascript">
document.write(total(2,3))
</script>
</body>
</html>