JavaScript String Operators

JavaScript String Operators


JavaScript String Operators
String operators are those operators that are used to perform operations on strings. Currently JavaScript supports only string concatenation(+) operators. This operator is used to join two strings. 
For example “red” + “apple” produces “red apple”.
Example1
Output
String Operators
Hello World! Welcome to WDH

Example2