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
- javascript
- Stack
- openCV
- 파이썬
- pandas
- NumPy
- queue
- Selenium
- python
- dataframe
- 백준
- 정보처리기사 c언어
- 데이터시각화
- programmers
- Matplotlib
- type hint
- 알고리즘
- 가상환경
- 프로그래머스
- 코딩테스트
- aws jupyter notebook
- 노마드코딩
- 선그래프
- 알고리즘 스터디
- Join
- Algorithm
- 알고리즘스터디
- MySQL
- 자료구조
- String Method
Archives
- Today
- Total
목록문자열 (1)
조금씩 꾸준히 완성을 향해
[JavaScript] Data type - String Method (문자열 대표 메소드)
● string.length : 문자열의 길이를 나타낸다. let hello = "hello" console.log(hello.length); //5 - 문자열 접근 ● string.charAt(index) : index에 해당하는 문자 반환 ● string.charCodeAt(index) : index에 해당하는 코드를 반환 let str = "hello world"; console.log(str.charAt(1)); //e console.log(str.charCodeAt(1)); 101 console.log(str[0]); //h - 문자열 검색 ● string.indexOf(substr, pos) : 해당 문자가 들어있는 index를 찾아준다. ● string.lastIndexOf(substr, p..
기타 언어/JavaScript
2022. 7. 27. 10:29