JS: String Overview
What is String
String is a sequence of characters. (technically, it is sequence of String Code Unit )
Quote String
String Escape Sequence
String Operations
String Type
String is one of the JavaScript Value Types
String is a Primitive Value
String is Immutable
String is 16 Bits Unit Sequence
String Index
String Constructor
String value can also be created by using the constructor function String.
〔see String Constructor〕
String is Iterable
That means, you can use for-of Loop and it will go thru the string by char, not String Code Unit .
you can also use Spread Operator to turn a string into a array of chars.
JavaScript. String
- JS: String Overview
- JS: Quote String
- JS: Template String
- JS: String Escape Sequence
- JS: Unicode Escape Sequence
- JS: String Operations
- JS: Iterate String
- JS: String Code Unit
- JS: Count Chars in String 📜
- JS: Tagged Template String
- JS: Regex Functions
- JS: Convert String and Number
- JS: String (class)
- JS: String Constructor
- JS: String.prototype