Strings 3/5
Accessing Character:
We can also access different characters from a string variable, and for that, we use the square brackets []
. The syntaxes for accessing characters are str.charAt(pos)
and variableName(pos)
where pos
is the position or index of the character that we want to access and variableName
is the variable to be sliced. Let’s look at an example.
9
1
2
3
let str = 'JavaScript';
console.log(str[0] );
console.log( str.charAt(4));
123let str = 'JavaScript'; console.log(str[0] ); console.log( str.charAt(4));
Aufgabe
Swipe to start coding
A string value, England
, is stored in a variable named country
. The task is to display the letter a
of the variable England
.
Lösung
9
1
2
let country = "England";
console.log(country[4]);
War alles klar?
Danke für Ihr Feedback!
Abschnitt 3. Kapitel 21
9
1
2
let country = "England";
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen