charCodeAt and codePointAt methods | String Object In JavaScript

Опубликовано: 12 Август 2022
на канале: Code Explained
3,305
66

🎁 Join my channel to get access to perks:
   / @codeexplained  

🧡 Hello All JavaScript Lovers Outhere!

Today you're going to learn about the String Object In JavaScript.

This tutorial is a series of videos, in each video we will discuss a method (or more) of the String Object in JavaScript.

In today's video, you're going to learn about the charCodeAt, and codePointAt methods.

The charCodeAt() method returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.

The codePointAt() method returns a non-negative integer that is the Unicode code point value at the given position. Note that this function does not give the nth code point in a string, but the code point starting at the specified string index.

🟢🟠 The string.charCodeAt().
🔷 Syntax :
charCodeAt(position)
🔹position : An integer greater than or equal to 0 and less than the length of the string. If index is not a number, it defaults to 0.

🟢🟠 The string.codePointAt().
🔷 Syntax :
codePointAt(position)
🔹position : Position of an element in str to return the code point value from.

The difference between charCodeAt and codePointAt:
The charCodeAt() method returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.

The UTF-16 code unit matches the Unicode code point for code points which can be represented in a single UTF-16 code unit. If the Unicode code point cannot be represented in a single UTF-16 code unit (because its value is greater than 0xFFFF) then the code unit returned will be the first part of a surrogate pair for the code point. If you want the entire code point value, use codePointAt().

🌍 Social Media Links.
◾ Facebook :   / code.explained.official  
◾ Twitter :   / code_explained  
◾ Instagram :   / code.explained.official  
◾ GitHub : https://github.com/CodeExplainedRepo

💲 Suppport the Channel
Paypal : https://paypal.me/CodeExplained
Buy Me a Coffee: https://www.buymeacoffee.com/CodeExpl...


Смотрите видео charCodeAt and codePointAt methods | String Object In JavaScript онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Code Explained 12 Август 2022, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 3,305 раз и оно понравилось 66 людям.