-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
74 lines (74 loc) · 1.67 KB
/
data.json
File metadata and controls
74 lines (74 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[
{
"object": "Number",
"method": "parseInt",
"ECMAversion": "ES1",
"returnType": "number",
"mandatoryParams": 1,
"optionalParams": 1,
"totalParams": 2
},
{
"object": "Number",
"method": "isNaN",
"ECMAversion": "ES6",
"returnType": "boolean",
"mandatoryParams": 1,
"optionalParams": 0,
"totalParams": 1
},
{
"object": "Number",
"method": "toFixed",
"ECMAversion": "ES3",
"returnType": "string",
"mandatoryParams": 0,
"optionalParams": 1,
"totalParams": 1
},
{
"object": "Array",
"method": "push",
"ECMAversion": "ES3",
"returnType": "number",
"mandatoryParams": 0,
"optionalParams": 0,
"totalParams": -1
},
{
"object": "Array",
"method": "pop",
"ECMAversion": "ES3",
"returnType": "any",
"mandatoryParams": 0,
"optionalParams": 0,
"totalParams": 0
},
{
"object": "Array",
"method": "map",
"ECMAversion": "ES5",
"returnType": "Array",
"mandatoryParams": 1,
"optionalParams": 1,
"totalParams": 2
},
{
"object": "Array",
"method": "filter",
"ECMAversion": "ES5",
"returnType": "Array",
"mandatoryParams": 1,
"optionalParams": 1,
"totalParams": 2
},
{
"object": "Array",
"method": "reduce",
"ECMAversion": "ES5",
"returnType": "any",
"mandatoryParams": 1,
"optionalParams": 1,
"totalParams": 2
}
]