Skip to main content

Concatenating Strings with Plus Operator

JavaScript에서 + 연산자가 문자열(string) 값과 함께 사용될 때이를 병합(concatenation) 연산자라고합니다. 서로 연결하여 다른 문자열에서 새 문자열을 만들 수 있습니다.

예제

'My name is Alan,' + ' I concatenate.'

노트

공백을주의하십시오. Concatenation은 연결된 문자열 사이에 공백을 추가하지 않으므로 직접 추가해야합니다.

연습

문자열에서 myStr을 빌드하십시오. “This is the start.”그리고 “This is the end.” + 연산자를 사용하세요.

// Example
var ourStr = "I come first. " + "I come second.";

// Only change code below this line

var myStr;


// Example
var ourStr = "I come first. " + "I come second.";

// Only change code below this line

var myStr = "This is the start." + " This is the end.";