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 1 year has passed since last update.

javascript04_変数

Last updated at Posted at 2022-02-18

変わらない値: 123435435464...
変数:値を保存することができます。
   また変数の値は任意に変更することもできます。
変数で値を説明することができます。(例: var age = 80;)

①変数の宣言が必要です。
var a;

②宣言された変数に値を入れる。
a = 123;
a = 456;

console.log(a);

①と②は同時に実施することができる。
var a = 123;

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?