Jeden Tag, aufrichtig und lustig.

js 6. string 본문

JavaScript

js 6. string

a-nanas 2022. 6. 20. 15:49

String(문자열)

따옴표 두 개로 이루어진

영어나 한글 등 문자 데이터를 의미 한다.

 

문자열 합치는 법

+연산자를 활용하면 된다.

ex.

console.log(‘hello world’+' i am coder');

let firstName ='coder'
let lastName ='kim'

let name = firstName + lastName
console.log(name);

 

* 숫자 데이터 타입과 문자 데이터 타입이 더해지면

-> 문자 데이터 타입이 된다.

ex.console.log(2+’2’); => 22(문자데이터)

 

문자열과 숫자의 결합

String + Number를 시도할 때는 항상 주의해야 한다.

alert("2 더하기 2는 " + 2 + 2);

위 코드의 실행결과는

'2 더하기 2는 4'일 것 같지만

'2 더하기 2는 22'로 실행 된다.

 

프로그래밍은 왼쪽에서부터 순서대로 실행되기 때문이다.

 

계산할 값을 소괄호로 먼저 묶어주면 원하는 값으로 실행 된다.

alert("2 더하기 2는 " + (2 + 2));

 

문자열의 총 길이 구하는 법

length를 활용하면 된다.

Console.log(‘pepper’.length);

-> 6

Const myCoke = pepper

Console.log(myCoke.length);

-> 6

 

Console.log(‘the length of pepper is ’ , ‘pepper’.length);

-> the length of pepper is 6

**콤마(,) 를 사용하여 
여러 내용을 한번에 출력할 수 있다.

 

Console.log(‘the length of pepper is ’+ ‘pepper’.length)

-> the length of pepper is 6

+연산자로인해 통으로 문자열이 됨.

 

*검색 꿀팁

how to로 시작하면 수월하게 검색 할 수 있다.

 

*데이터를 할당 할 때 빈문자열(공백)도 문자열에 포함 되서 할당 된다.

ex. Let greeting = ‘hello world’;

 

 

 

'JavaScript' 카테고리의 다른 글

js 8. 변수 이름  (0) 2022.06.20
js 7. function-1  (0) 2022.06.20
js 5. 코멘트  (0) 2022.06.18
js 4. 변수와 대입 연산자  (0) 2022.03.29
js 3. 데이터 유형  (0) 2022.03.29