3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TypeScriptの文字リテラル

Last updated at Posted at 2019-03-20

TypeScriptの文字リテラルは下記の3つの方法でくくる

  1. シングルクォート (')
  2. ダブルクォート (")
  3. バッククォート (`)

3のバッククォートの場合、テンプレート文字列として次のことが可能です

  • 文字列に変数を埋め込める
  • 複数行の文字列を改行コードなしに埋め込むことができる

例↓

sample.ts

let x: string = '埋め込み文字列'
let msg = `ここからスタート
           埋め込み文字列 → ${x}
           ここまで`

${x} の部分が文字列に埋め込まれている変数

シングルクォートで書く場合↓

sample.ts

let x: string = '埋め込み文字列'
let msg = 'ここからスタート\n 埋め込み文字列  → ' + x + '\n ここまで'
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?