Skip to content

Commit

Permalink
Fix translation Multiline Strings
Browse files Browse the repository at this point in the history
  • Loading branch information
szk0u committed Dec 27, 2018
1 parent 9e7bafd commit 76d13d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/template-strings.md
Expand Up @@ -25,7 +25,7 @@ var html = `<div>${lyrics}</div>`;
console.log(`1 and 1 make ${1 + 1}`);
```

#### 複数の文字列(Multiline Strings)
#### 複数行文字列(Multiline Strings)
JavaScriptの文字列に改行を入れたくなったことはありませんか?おそらく、あなたは何かの歌詞を埋め込みたかったのでは?あなたは大好きなエスケープ文字`\`を使ってリテラルの改行をエスケープする必要があったでしょう。そして、次の行で文字列に新しい行`\ n`を手動で入力する必要がありました。これを以下に示します:

```ts
Expand Down

0 comments on commit 76d13d2

Please sign in to comment.