기존 배열에 원소 또는 배열을 추가하여 새 배열을 만들고자 할때 사용한다 .
var hello = "hello" ; console.log(hello.concat("jakdu") // hello jakdu
변수끼리 합칠수도 있습니다.
const str1 = "hello"; const str2 = "world"; console.log(str1.concat(',' , str2)); // hello,world