add two number program in javascript

technical talkiess
0

 <!DOCTYPE html>

<html>

<body>



<p>add two number program in javascript</p>


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


<script>

const a = 10;

const b = 20;

const c = a+b;

document.write(c);

</script>


</body>

</html>


Post a Comment

0Comments

Thanks you for commenting your questions. I will see question and respond you.

Post a Comment (0)