영상
개념
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>배열 연결 - join()</title>
</head>
<body>
<script>
/*
[개념] 배열 연결
(1) join()
(2) 배열의 모든 요소를 하나의 문자열로 연결해 반환한다.
*/
let arr = ["미금", "정자", "수서", "양재", "당곡"];
let rs = arr.join();
document.write(rs + " : " + typeof rs + "<br>"); // 미금,정자,수서,양재,당곡 : string
rs = arr.join("");
document.write(rs + "<br>"); // 미금정자수서양재당곡
rs = arr.join("-");
document.write(rs + "<br>"); // 미금-정자-수서-양재-당곡
</script>
</body>
</html>
Java
복사