본문 바로가기

TIL

Array.prototype.join()

join() method는

array에 있는 모든 elements를 연결해서(concatenation)

하나의 string return

 

 

 

const elements = ['Fire', 'Air', 'Water'];

console.log(elements.join());
// expected output: "Fire,Air,Water"

console.log(elements.join(''));
// expected output: "FireAirWater"

console.log(elements.join('-'));
// expected output: "Fire-Air-Water"

elements라는 array에 3개의 단어가 있다.

 

elements.join()을 하면

Fire,Air,Water

이렇게 comma가 중간에 들어가고

 

elements.join('')의 경우

comma 없이 단어들이 쭈욱 연결되서 하나의 string으로

 

elements.join('-')처럼 '-'을 넣어주면

단어들 사이에 '-'이 들어간다.

 

 

 

 

실제로 console에 실험해봤음ㅋㅋ

 

.join('+')로 했더니

단어들 사이에 + 가 들어가서 연결된 걸 볼 수 있다.

 

 

 

 

 


.join()에서 기억할 것은 

 

array, concatenation, new string

'TIL' 카테고리의 다른 글

String.prototype.split()  (0) 2020.07.20
array 비우기  (0) 2020.07.20
innerHTML vs. textContent vs. innerText  (0) 2020.07.20
JSON (2) 개념  (0) 2020.07.16
JSON (1) Intro  (0) 2020.07.15