JavaScript String Data Type

JavaScript String Data Type


JavaScript string data type
Strings are a series of letters and numbers enclosed in quotation marks(“…”).
Single quotes: 'Hello'
Double quotes: "Hello"
Backticks: `Hello`
Example1
Output
Example2: Program for String Joining strings with the help of concatenation
Output