join1 [JAVASCRIPT] 문자열 합치기 - concat() / 배열의 요소들을 하나의 문자열로 합치기 - join() concat / join 자바스크립트에서 문자열을 합치는 방법입니다. 1. + 사용 const str1 = "Hello"; const str2 = " World"; console.log(str1 + str2); // Hello World 2. 여러 개의 문자열 합치기 concat str.concat(string2, string3[, ..., stringN]); str에 인자로 전달한 문자열들을 모두 합쳐서 새로운 문자열을 반환합니다. 예시 1 두 문자열을 합칩니다. const strA = "A friend to all"; const strB = "is a friend to none"; const message = strA.concat(strB); console.log(message); // "A frie.. 2019. 8. 6. 이전 1 다음