charCodeAt/ String.fromCharCode

해피데빙·2022년 7월 12일
0

코딩테스트

목록 보기
29/52
post-custom-banner

charCodeAt

var str = "A" 
var charCode = str.charCodeAt(0)//65 

String.fromCharCode

var charCode = 65 
var str = String.fromCharCode(charCode); 
//str = 65; 

profile
노션 : https://garrulous-gander-3f2.notion.site/c488d337791c4c4cb6d93cb9fcc26f17

0개의 댓글