Comprehensive Guide to JavaScript String Methods
Character Access
The charAt() method retrieves the character at a specific index position. Modern JavaScript also supports bracket notation for the same purpose.
const text = 'developer';
console.log(text.charAt(0)); // 'd'
console.log(text[0]); // 'd' (equivalent)
// charCodeAt() returns the Unicode code point
console.log(text.charCod ...
Posted on Sun, 14 Jun 2026 17:52:59 +0000 by jpraj