How to Add Two Strings in Javascript
Add of string
<html>
<body>
<script>
var a,b,c;
document.write("Enter the value of a and b is:");
a=prompt("Enter the value of a is:");
b=prompt("Enter the value of b is:");
c=a+b;
alert(C);
</script>
</body>
</html>
0 Comments