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

Java Script の 変数 に 値 を 足して 結果 を 最初 の 変数 に 格納 する

Posted at

目的

  • JavaScriptの定義済みの変数Aに対して値を足し、合計の値を変数Aに格納し直す方法を知る。
    ※変数の基本的な記載方法はこちら

押さえるポイント

書き方の例

  • 下記に汎用的な変数に格納されている値に値を足し、同じ変数に格納する方法を記したJavaScriptファイルの内容を記載する。
let 変数名 = 数値1;
変数名 = 変数名 + 数値2;

より具体的な例

  • 「number」という名前の変数に3を格納する。
  • 「number」に格納されている値に2を足す。
  • 足した後の値を「number」に格納する。
  • 下記に上記の処理を記したJavaScriptgファイルの内容を記載する。
// 「number」変数に3を格納
let number = 3;

// 「number」変数の中の値に2を足し、結果を「number」に格納
number = number + 2;
1
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
1
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?