holdanddeepdive / javascript-deep-dive

3 stars 1 forks source link

32장 String #33

Open humonnom opened 2 years ago

humonnom commented 2 years ago

console.log(icons.charAt(1)); console.log(icons.charCodeAt(1)); console.log(icons.codePointAt(1));


   * charAt (Full support)
      *  charAt() 함수는 문자열에서 특정 인덱스에 위치하는  유니코드 단일문자를 반환합니다. 
      * `★`
   * charCodeAt (Full support)
      * charCodeAt() 메서드는 주어진 인덱스에 대한 UTF-16 코드를 나타내는 0부터 65535 사이의 정수를 반환합니다.
      * `9733`
   * charPointAt (IE 빼고 Full support)
      * `9733`
![스크린샷 2022-04-23 오후 6 10 16](https://user-images.githubusercontent.com/54441505/164888203-88fa90f5-f93f-4e34-90cc-7f3b90cdf34a.png)