Frontend/JavaScript

charAt(), charCodeAt(), fromCharCode()

섕걍 2023. 2. 6. 15:38

1. CharAt() : 해당 문자열에서 index에 위치한 문자를 리턴한다.

const test = "hello"
const index = 4;

console.log(test.charAt(index));
// "o"

 

2. charCodeAt() : 해당 문자열의 유니코드를 리턴한다.

const test = "hello"
const index = 4;

console.log(test.charCodeAt(index));
// 111

 

3. fromCharCode() : 문자열에서 사용하며, 유니코드를 문자열로 리턴해준다.

console.log(String.fromCharCode(111));
// "o"

console.log(String.fromCharCode(65,66,67));
//"ABC"