0
0

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 3 years have passed since last update.

[Javascript]テンプレートリテラレル

Posted at

説明

コンソールに表示する時に ${変数} で文字をつなげる。

#注意点
この書き方をする時はバックコーテーション「`」でくくる。

const name = "田中";

console.log(`こんにちは、${name}さん`);

出力結果
こんにちは、田中さん

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?