.charAt()
Anonymous contributor
Published Jun 23, 2021Updated Jun 28, 2023
Contribute to Docs
Returns a single character at the specified index of a string.
Syntax
string.charAt(index);
index
is a required parameter representing the index of the character to be returned.
Examples
Find the first character in a string:
const greeting = 'Hello World';const firstLetter = greeting.charAt(0);console.log(firstLetter);// Output: H
Find the last character in a string:
const greeting = 'Hello World';const lastLetter = greeting.charAt(greeting.length - 1);console.log(lastLetter);// Output: d
Codebyte Example
The following is runnable, and demonstrates the use of the .charAt()
method:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.