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 | 31 |
Tags
- JS 개념
- react
- intellij
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Concurrently
- 따라하며 배우는 노드 리액트 기본 강의
- Spring-Framework
- 노드에 리액트 추가하기
- googleColaboratory
- 리액트
- node.js로 로그인하기
- DB Browser
- props
- Python
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 거북이 대포 게임
- 모두의 파이썬
- Colaboratory 글자 깨짐
- 웹 게임을 만들며 배우는 리액트
- 자바스크립트
- Do it 자바스크립트 + 제이쿼리 입문
- react오류
- 인프런
- node.js 설치
- 타자 게임 만들기
- 계산맞추기 게임
- vs code 내 node
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 모던자바스크립트
- spring-boot
Archives
- Today
- Total
프로그래밍 삽질 중
모던 자바스크립트 핵심 가이드 05 문자열 메서드 본문
* 모던 자바스크립트 핵심 가이드(저자 알베르토 몬탈레시, 옮김 임지순/권영재) 복습
* 핵심 부분과 필요할 경우 문제도 수정해서 기재할 것
* 문제될 경우 삭제할 것
○ indexOf()
- 문자열에서 지정된 값이 처음 나타나는 위치 반환
○ slice()
- 문자열의 지정된 부분을 새 문자열로 반환
○ toUpperCase / toLowerCase()
- 문자열의 모든 문자를 대문자/소문자로 바꿈
//indexOf
const sentence = "The United States has 50 states and 1 special ward."
console.log(sentence.indexOf('states')); //25
//slice
const HarryPotter = ["Harry", "Hermione", "Ron"]
console.log(HarryPotter.slice(0, 5)); //["Harry", "Hermione", "Ron"]
//toUpperCase
const Disney = "Frozen, Let it go";
console.log(Disney.toUpperCase()); //"FROZEN, LET IT GO"
//toLowerCase
const Disney2 = "Zootopia, Judy, Nick";
console.log(Disney2.toLowerCase()); //"zootopia, judy, nick"
* ES6부터 업데이트
○ startsWith() / endsWith()
- 매개변수로 받은 값으로 문자열이 시작/끝(나)하는지 확인
○ includs()
- 전달한 값이 문자열에 포함되었는지 확인
○ repeat()
- 문자열을 반복하며 횟수를 인수로 받음
//startsWith()
const code = "starbucks"
console.log(code.startsWith("stst")); //false
console.log(code.startsWith("star")); //true
console.log(code.startsWith("Star")); //false
//endsWith()
const code2 = "Coffee is Life";
console.log(code2.endsWith("Coffee", 1)); //false
console.log(code2.endsWith("Coffee", 6)); //true
console.log(code2.endsWith("Coffee", 8)); //false
//includes
const code3 = "Peace to Ukraine"
console.log(code3.includes("Peace")); //true
console.log(code3.includes("ukraine")); //false
//repeat
const hello = "안녕 ";
console.log(hello.repeat(5)); //"안녕 안녕 안녕 안녕 안녕 "
'과거 프로그래밍 자료들 > Javascript&typescript' 카테고리의 다른 글
Let's Get IT 자바스크립트 프로그래밍 - 변수, 배열 (0) | 2022.07.05 |
---|---|
모던 자바스크립트 핵심 가이드 06 디스트럭처링(destucturing) (0) | 2022.05.16 |
모던 자바스크립트 핵심 가이드 04 템플릿 리터럴 (0) | 2022.05.14 |
모던 자바스크립트 핵심 가이드 03 함수 기본값 인수 (0) | 2022.05.13 |
모던 자바스크립트 핵심 가이드 02 화살표 함수 (0) | 2022.05.12 |