Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 공유기 서버
- reactive
- Spring Batch
- 웹 스터디
- reactor
- 웹앱
- Spring Framework
- ipTIME
- 서버운영
- spring reactive
- 웹 커리큘럼
- reactor core
Archives
- Today
- Total
Hello World
join() 본문
반응형
Definition and Usage
join() method는 string에 배열의 모든 element들을 합치고 string을 반환한다.
element들은 명시된 separator(분리자)에 의해 분리되어 진다. default separator는
comma (,)이다.
Syntax
array.join(separator) |
Parameter | Description |
separator | 선택사항. 사용될 separator. 생략한다면, element는 comma를 사용하여 분리되어진다. |
Browser Support
join() method는 모든 주요한 브라우저에서 지원된다.
Example
string에 배열의 모든 element들을 합친다.
<script type="text/javascript">
var fruits = ["Banana", "Orange", "Apple", "Mango"]; document.write(fruits.join() + "<br />"); document.write(fruits.join("+") + "<br />"); document.write(fruits.join(" and "));
</script> |
위 코드의 결과는 다음과 같을 것이다.
Banana,Orange,Apple,Mango Banana+Orange+Apple+Mango Banana and Orange and Apple and Mango |
[출처] JavaScript join() Method|작성자 드림노마드
반응형
'Javascript > Core' 카테고리의 다른 글
[펌]자바스크립트 제대로 배우기 (0) | 2016.01.10 |
---|---|
unbind() (0) | 2012.11.08 |
cloneNode() (0) | 2012.09.07 |
call() 함수 (0) | 2012.09.06 |
apply()함수 (0) | 2012.09.06 |
Comments