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.

【JavaScript】変数について

Posted at

#はじめに

はじめまして。
エンジニア転職に向けて学習中の佐藤です。
このQiitaでは、学習中のアウトプットや、同じところでつまずいてしまう駆け出しエンジニアに向けて発信していきます!

誤った情報がありましたら、ご指摘いただけると幸いです!

##変数について(let,const,var)
letは値を再代入できる。

JavaScript
let width = 1280;
whidth = 640;
console.log(width); //640が出力される

一方、constは値を再代入できない。定数と呼ばれる。 値を変えないものに上書き禁止のものに関しては、constを使用する。
JavaScript
const height = 680;
height = 340;
console.log(height); //エラーになる

varはletと同じように値の再代入ができるが、ES6のアップデート以降は使用されていない。
JavaScript
var width = 1280;
whidth = 640;
console.log(width); //640が出力される

#最後に 今回はJavaScriptの変数について記事にしてみました。 最初は覚えることが多いですが、できることが増えると楽しくなってきますね!

同じように学習中の方に向けて、定期的にQiitaにて記事を投稿していこうと思います!

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?