回答編集履歴
1
チェック
test
CHANGED
@@ -5,3 +5,65 @@
|
|
5
5
|
にあるように、「オブジェクトは連想配列と呼ばれることがあります」ということですね。
|
6
6
|
|
7
7
|
ただしjsのオブジェクトはイテラブルではないので配列と呼ぶにはちょっと違和感があります。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
なお、プリミティブな要素はそれぞれの型を参照できますが
|
12
|
+
|
13
|
+
```javascript
|
14
|
+
|
15
|
+
const bool=true;
|
16
|
+
|
17
|
+
const num=123;
|
18
|
+
|
19
|
+
const bint=123n;
|
20
|
+
|
21
|
+
const str="xyz";
|
22
|
+
|
23
|
+
const unde=undefined;
|
24
|
+
|
25
|
+
const func=()=>{};
|
26
|
+
|
27
|
+
console.log([typeof bool,typeof num,typeof bint,typeof str,typeof unde,typeof func]);
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
(ただしnullはオブジェクト)
|
32
|
+
|
33
|
+
オブジェクトやリスト系のもの配列などは型はobjectです
|
34
|
+
|
35
|
+
(数値や文字列もオブジェクト型で宣言すればobject)
|
36
|
+
|
37
|
+
```javascript
|
38
|
+
|
39
|
+
const o={};
|
40
|
+
|
41
|
+
const s=new Set();
|
42
|
+
|
43
|
+
const m=new Map();
|
44
|
+
|
45
|
+
const a=[];
|
46
|
+
|
47
|
+
const n=new Number();
|
48
|
+
|
49
|
+
const st=new String();
|
50
|
+
|
51
|
+
console.log([typeof o,typeof s,typeof m,typeof a,typeof n,typeof st]);
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
ただし、厳密に型を比較することも可能です
|
58
|
+
|
59
|
+
```javascript
|
60
|
+
|
61
|
+
const o={};
|
62
|
+
|
63
|
+
console.log([o instanceof Object,o instanceof Array]);
|
64
|
+
|
65
|
+
const a=[];
|
66
|
+
|
67
|
+
console.log([a instanceof Object,a instanceof Array]);
|
68
|
+
|
69
|
+
```
|