--- id: 56533eb9ac21ba0edf2244b8 title: 文字列を += 演算子で連結する challengeType: 1 videoUrl: 'https://scrimba.com/c/cbQmmC4' forumTopicId: 16803 dashedName: concatenating-strings-with-the-plus-equals-operator --- # --description-- `+=` 演算子を使用して、既存の文字列変数の末尾に文字列を連結することもできます。 これは長い文字列を複数行に分割する場合にとても便利です。 **注:** 空白が必要な場合は注意してください。 連結では、文字列の間に空白が追加されないため、必要な場合は自分で付け加える必要があります。 例: ```js let ourStr = "I come first. "; ourStr += "I come second."; ``` これで `ourStr` の値は文字列 `I come first. I come second.` になります。 # --instructions-- `+=` 演算子を使用して、`This is the first sentence.` と `This is the second sentence.` の 2 つの文字列を連結し、複数行にわたる `myStr` を作成してください。 前の例のように、`+=` 演算子を使用し、必ず 2 つの文字列の間に空白を入れてください。 まず `myStr` に 1 つ目の文字列を代入し、それから 2 つ目の文字列を追加してください。 # --hints-- `myStr` の値が文字列値 `This is the first sentence. This is the second sentence.` になる必要があります。 ```js assert(myStr === 'This is the first sentence. This is the second sentence.'); ``` `+=` 演算子を使用して `myStr` を作成する必要があります。 ```js assert(code.match(/myStr\s*\+=\s*(["']).*\1/g)); ``` # --seed-- ## --after-user-code-- ```js (function(){ if(typeof myStr === 'string') { return 'myStr = "' + myStr + '"'; } else { return 'myStr is not a string'; } })(); ``` ## --seed-contents-- ```js let myStr; ``` # --solutions-- ```js let myStr = "This is the first sentence. "; myStr += "This is the second sentence."; ```