公開日:
更新日:
プレイ回数
711
用語一覧(85件)
001
const
const
定数
002
let
let
変数
003
var
var
変数
004
function
function() {}
関数
005
アロー関数
() => {}
006
this
this
this
007
async
async
async
008
await
await
await
009
ジェネレーター
function* () {}
010
yield
yield
011
class
class
012
constructor
constructor
013
import
import * as x from
014
export
export
015
console.log
console.log
016
Number関数
Number
017
String関数
String
018
for
for (let i = 0; i < N; i++) {}
019
while
while (true) {}
020
do while
do {} while (false)
021
Symbol
Symbol
022
テンプレートリテラル
`Hello${world}`
023
文字列1
'Hello, World!'
024
文字列2
"Hello, World!"
025
数値
123
026
小数
1.23
027
BigInt
1n
028
2進数
0b01
029
8進数
0o07
030
16進数
0xff
031
四則演算
1 + 2 - 3 * 4 / 5
032
剰余
6 % 7
033
等号
8 === 9
034
null
null
035
undefined
undefined
036
&&
a && b
037
||
c || d
038
Array
Array(n)
039
[]
[1, 2, 3]
040
{}
{}
041
オプショナルチェーン
?.
042
オプショナルチェーン(関数)
?.()
043
switch
switch (true)
044
case
case x:
045
break
break;
046
default
default
047
try, catch, finally
try {} catch (e) {} finally {}
048
throw
throw new Error('error')
049
return
return
050
typeof
typeof x === 'number'
051
instanceof
x instanceof X
052
delete
delete a.b
053
if
if (a) {} else if (b) {} else {}
054
三項演算子
a ? b : c
055
オプショナルチェーン(ブラケット)
?.[0]
056
Null 合体演算子
a ?? 0
057
+=
+=
058
-=
-=
059
/=
/=
060
%=
%=
061
{...}
{...x}
062
[...]
[...x]
063
function(...)
func(...x)
064
new
new Class
065
<=
a <= b
066
<
a < b
067
>
a > b
068
>=
a >= b
069
*=
*=
070
>>
x >> 2
071
<<
x << 2
072
>>>
x >>> 1
073
&
1 & 1
074
|
0 | 1
075
in
'key' in obj
076
continue
continue;
077
debugger
debugger
078
xor
1 ^ 1
079
ビット反転
~1
080
!
!false
081
super
super()
082
extends
class extends Date
083
static
static
084
正規表現
/\d+/g
085
module.exports
module.exports
タイピングのランキング
コメント
※誹謗中傷、不適切なコメントはお控え下さい。
※コメントするには、ログインが必要です。
コメントはありません