Skip to content

Commit 98cb41b

Browse files
Update 00_.md
1 parent 1a4088a commit 98cb41b

File tree

1 file changed

+2
-2
lines changed
  • 02_Data Types and Variables/00_Data Types/08_String

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Strings represent a sequence of characters. They are always enclosed in either single quotes (') or double quotes ("). Starting ES6, or ECMAScript 2015, back ticks <code>\`</code> can also be used to represent strings. String can be concatenated using the `+` operator as shown in the code sample below.
1+
Strings represent a sequence of characters. They are always enclosed in either single quotes (') or double quotes ("). Starting ES6, or ECMAScript 2015, back ticks <code>\`</code> can also be used to represent strings. Strings can be concatenated using the `+` operator as shown in the code sample below.
22

3-
Additionally, strings are stored as Unicode, a industry standard for the encoding, representation, and handling of text expressed in most programming languages. Unicode supports all commonly used alphabets in the world, including Cyrillic, Chinese, Arabic, Greek, Spanish, English, German etc. The sample code below shows the use of Arabic, Bulgarian, and Japanese.
3+
Additionally, strings are stored as Unicode, an industry standard for the encoding, representation, and handling of text expressed in most programming languages. Unicode supports all commonly used alphabets in the world, including Cyrillic, Chinese, Arabic, Greek, Spanish, English, German etc. The sample code below shows the use of Arabic, Bulgarian, and Japanese.

0 commit comments

Comments
 (0)