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

【初心者】JavaScript 変数・定数/振り返り【備忘録7】

Last updated at Posted at 2019-10-28

##10/25~27で勉強したこと

###JavaScript入門!

  • 基本的に【console.log("文字列");】で出力をする。
  • //コメント で出力しない文章を書くこともできる。
        • /で四則計算。%で割り算の余りを出力できる。

###変数

  • 同じ文章を出力する際や、同じ値を繰り返し使用する際に使う。
     変更にも対応しやすく、値の意味もわかりやすくなるため変数は使用される。
  • 変数は上書き(ex)や追加(ex2)などができる。上書きする際は【let】は不要

     【ex:let number=2; number=3;】【ex2:let number=2; number +=2;】

###定数

  • const number=〇;で定数をして出力が可能。
  • 長いコードになればなるほど途中で代入の数字が変わってしまっているなどの心配が出てくる。

    そこで定数のconstを使用していると、途中の数値上書きが不可なので定数を使ったほうが安心。
  • 定数の場合文章連結に+を使うのではなくて別の連結方法がある。
     console.log( 私の名前は${name}です );

##振り返り・気を付けること

  • console[ .]log ドットを忘れてしまうことがあったので気を付ける。
  • 数字を代入する際は""は必要ない!気を付けること。
  • number +=2; の+と=の間にスペースを入れるとエラーが出たので気を付けること!
  • 定数での${}で連結する際は `` を文頭文末に入れ忘れないように気を付ける。
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?