1
1

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基礎

Last updated at Posted at 2020-02-17

変数

var 変数 → ES6から let 変数、const 変数

配列

let list = [.....]
console.log(list)

オブジェクト

let obj = {}

for文 繰り返し

for(let i = obj. <回数 ; i += 1>) {
}

function文 

function 関数名(引数) {
}

引数はなくても()はいる

1
1
2

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?