How to Add Two Strings in Javascript

How to Add Two Strings in Javascript

How to Add Two Strings in Javascript


how to add two strings in javascript,javascript add to string,add double quotes to string javascript,how to add string in javascript,add string to array 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>


Post a Comment

0 Comments