Monday, 26 August 2019

javascript function

<html>
<body>

<h2>JavaScript Functions</h2>

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML =sum(5) ;

function sum(a) {
 return a+8;
}
</script>

</body>
</html>


No comments:

Post a Comment