Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 광명시버스분석
- 버스분석
- 배열삭제
- 10172
- react #회원가입 #비밀번호비교
- vetor
- 탈출문자
- barplot in r
- R데이터형태
- getline
- 배열추가
- 그래픽
- 값삭제
- 백준 11718
- useState
- DataFrame
- 그대로 출력하기
- asynchronization
- plot in r
- 데이터분석
- 이용현황분석
- setstate
- 이스케이프시퀀스
- R 그래프
- await
- React
- 백준
- 값추가
- barplot
- 백준 10172
Archives
- Today
- Total
devlog_zz
[javascript] 자바스크립트 아스키 코드 본문
728x90
자바스크립트 아스키 코드
- charCodeAt()
문자의 아스키 번호를 반환
console.log('A'.charCodeAt()) // 65
- String.fromCharCode(아스키 번호)
아스키 번호의 문자를 반환
const str = String.fromCharCode(65)
console.log(str) // "A"
const str2 = String.fromCharCode(65,66,67)
console.log(str2) // "ABC"
- codePointAt()
문자의 아스키 번호를 반환
console.log("A".codePointAt()) // 65
728x90
Comments