What is String ? A string is a sequence of characters. It is a primitive data type. String can be created using three different types of delimiters.

Single Quotes - 'Hello' Double Quotes - "Hello" Backticks - Hello -(Template Literals) Using this, we can embed variables or any valid expression directly inside the string using ${expression} syntax. Templates allow single and double quotes inside