0
0

More than 3 years have passed since last update.

Java Script 基礎文法編 1

Posted at

詳細

今日から本格的にJava Scriptを学習しようと思う。
スクールでも学習したが基礎からコードを一つ一つ確実に理解する為アウトプットをしていく!

定数

const price = 150;
price に 150を代入する事ができる。
ただ、constを使った場合このpriceに再代入する事ができない

変数

let price = 150;
price に 150を代入する事ができる。
letは再代入する事ができる。
注 基本はconstを使いどうしてもという時だけlet を使うようにする。

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