JavaScript Example (Program)
Learn Details

What is the use of String Concatenationn Operator ?

Concatenation operator का use दो या दो से अधिक string को आपस में एक साथ मिलाने या जोड़ने के लिए किया जाता है। इसे use करने के लिए athematic operators का sign + का use किया जाता है ।

Different between conditional Ternary operator & if else statement ?

if else statement में multiple condition को check किया जाता है जबकि conditional ternary operator का use single condition को check करने के लिए किया जाता है।

Example 1:

            <script>

                        var a = "Teach ";

                        var b = "Coders "

                        document.write(a+b);

            </script>

Out Put :

Teach Coders

Example 2:

<script>

            var a = "Teach ";

            var b = "Coders "

            document.write("Hello "+a+b);

</script>

Out Put :

Hello Teach Coders