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.

テンプレート文字列について学習していきます。

テンプレート文字列とは、バックティックで囲んだ文字列の事を言います。

`${ 変数 }`

上記のように記述します。

できることは、以下になります。

① 変数の値を文字列に埋め込むことができる
② 改行をすることができる
③ 式を文字列に埋め込むことができる

① 変数を文字列に埋め込む事ができる

index.js
<script>
    'use strict'

    let language = "こんにちわ";

    document.write(`皆さん${language}!!`);
  </script>

スクリーンショット 2021-04-07 17.16.36.png

② 改行をすることができる

index.html
<script>
document.write(`あいうえお
  かきくけこ`);
</script>

スクリーンショット 2021-04-07 17.48.35.png

# ③ 式を文字列に埋め込むことができる

index.html
<script>
let name = "とんかつ定食";
   let price = 400;

   let msg =`今日の${name}${price * 1.08}円です!!`;
   document.write(msg);
</script>

スクリーンショット 2021-04-07 17.42.57.png

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?