var str="Hello"; str.length; -> 5
.concat 함수를 사용한다.
str1.concat(str2) 와 같이 사용한다.
또 다른 방법은 + 를 사용하는 것
str1 + str2 와 같이 사용한다.