Concatenation operator का use दो या दो से अधिक string को आपस में एक साथ मिलाने या जोड़ने के लिए किया जाता है। इसे use करने के लिए athematic operators का sign + का use किया जाता है ।
if else statement में multiple condition को check किया जाता है जबकि conditional ternary operator का use single condition को check करने के लिए किया जाता है।
<script>
var a = "Teach ";
var b = "Coders "
document.write(a+b);
</script>
Teach Coders
<script>
var a = "Teach ";
var b = "Coders "
document.write("Hello "+a+b);
</script>
Hello Teach Coders