728x90
반응형
join() 함수는 배열의 모든 요소를 연결해 하나의 문자열로 만듭니다.
arr.join([separator])
- separator는 옵션입니다.
const str1 = ['Hello', 'world'].join();
const str2 = ['Hello', 'world'].join('♥');
document.write(str1);
document.write('<br>');
document.write(str2);
console.log(str1) => hello,world
console.log(str2) => hello♥world
728x90
반응형
'📘 𝐭𝐢𝐥 > 일간 회고' 카테고리의 다른 글
[23.02.01] (0) | 2023.02.01 |
---|---|
[23.01.30] (0) | 2023.01.30 |
[23.01.26] (0) | 2023.01.26 |
[23.01.25] (1) | 2023.01.25 |
[23.01.23] - replace() (2) | 2023.01.23 |