In JavaScript, the 'join()' method is a built-in method available on array objects.
자바스크립트에서 조인 메소드는 배열 객체에 사용가능한 내장 메소드이다.
It is used to concatenate the elements of an array into single string, using a specified separator between each element.
각 요소들 사이에서 특정 separator를 사용해서 배열의 요소를 단일 스트링으로 붙이는 데 사용된다.
'array': The array whose elements you want to join.
배열의 요소가 합치고자 하는.
'separator': An optional parameter that specifies the string to be used as a separator between the array elements.
배열 요소 사이에서 separator로서 사용되는 스트링을 특징짓는 선택적 파라미터.
In this example, the elements of the 'fruits' array are joined into a single string using ', 'as the separator.
위 예에서, fruits 배열의 요소는 separator로서 ', '를 사용하여 하나의 스트링으로 합쳐졌다.
Chat Gpt
공감하며 읽었습니다. 좋은 글 감사드립니다.