영상
개념
<!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>배열 합치기 - concat()</title>
</head>
<body>
<script>
/*
[개념] 배열 합치기
(1) concat()
(2) 인자로 주어진 배열을
기존 배열에 합쳐서 새 배열을 반환한다.
*/
let x = [1, 2, 3];
let y = [4, 5, 6];
let rs = x.concat(y);
document.write(rs + "<br>"); // 1,2,3,4,5,6
</script>
</body>
</html>
Java
복사