.charAt()
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.
Learn JavaScript on Codecademy
- Career path
Front-End Engineer
Front-end engineers work closely with designers to make websites beautiful, functional, and fast.Includes 34 CoursesWith Professional CertificationBeginner Friendly115 hours - Free course
Learn JavaScript
Learn how to use JavaScript — a powerful and flexible programming language for adding website interactivity.Beginner Friendly15 hours