Languages
[Edit]
EN

JavaScript - String charAt() method example

4 points
Created by:
Geospatial-Palus
630
// ONLINE-RUNNER:browser;

var text = 'abc';
console.log( text.charAt( 0) ); // a

console.log( 'abc'.charAt(0) ); // a
console.log( 'abc'.charAt(1) ); // b
console.log( 'abc'.charAt(2) ); // c

console.log( text.charAt()         ); // a
console.log( text.charAt(-1) == '' ); // true
console.log( text.charAt(10) == '' ); // true
console.log( text.charAt(null)     ); // a

1. Documentation

SyntaxString.prototype.charAt(index)
Parametersindex - integer number value (primitive value).
ResultCharacter from index position (primitive value).
DescriptioncharAt takes only one parameter and return single character from index position inside string.

2. String square bracket operator ([ ]) approach example

Bracket operator is alternative approach to get specific character from string.

// ONLINE-RUNNER:browser;

var text = 'abc';

console.log( text[0] ); // a
console.log( text[1] ); // b
console.log( text[2] ); // c

console.log( text[-1]   ); // undefined
console.log( text[10]   ); // undefined
console.log( text[null] ); // undefined

 

Alternative titles

  1. JavaScript - String.prototype.charAt() documentation with examples
  2. js - String charAt() method documentation with examples
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - String (documentation)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join