String is a sequence of symbols. All of the symbols can be accessed via their indexes starting from 0.
Let's say we have the string "computer". It's structure is the following:
So if we need to print the first letter (c) and the 3rd letter (m), we do:
Output:
Length is the count of the symbols contained in a string.
It's accessed via the length
function.
Example:
Output:
Via length
we can access the last symbol of a string.
Example:
Output:
Accessing string outside of it's bounds returns undefined value.
Let's look the following example:
Output:
The string has indexes from 0 to 4. Accessing index outside of that bound (in this case 5) returns undefined.
We can check if string is contained in a string via the includes
function.
Examples:
Output:
All symbols of a string can be iterated via for loop.
Let's print all letters of a word that are not vowels:
Output:
In this case !'aeiou'.includes(letter)
means that
letter
is a symbol that's not a vowel letter.