<!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>
<!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>
0Comments
Thanks you for commenting your questions. I will see question and respond you.