The charCodeAt() is an inbuilt function in TypeScript which is used to return the number indicating the Unicode value of the character at the specified index.
Syntax:
string.charCodeAt(index);
Parameter: This method accept a single parameter as mentioned above and described below.
- index This parameter is an integer between 0 and 1 less than the length of the string.
Return Value: This method returns number indicating the Unicode value of the character at the given index.
Below example illustrate the String charCodeAt() method in TypeScriptJS:
Example 1:
JavaScript
var str = new String( "JavaScript is object oriented language" );
var value = str.charCodeAt(14);
console.log(value);
|
Output:
111
Example 2:
JavaScript
var str = new String( 'JavaScript is object oriented language' );
console.log( "Character at 0 is : " + str.charCodeAt(0));
console.log( "Character at 1 is : " + str.charCodeAt(1));
|
Output:
Character at 0 is : 74
Character at 1 is : 97
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!