-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json5
More file actions
63 lines (63 loc) · 1000 Bytes
/
Copy pathtest.json5
File metadata and controls
63 lines (63 loc) · 1000 Bytes
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
{
number: 2,
boolean_true: true,
boolean_false: false,
empty: null,
date_string: "2023-12-01",
date: new Date("2023-12-01"),
regex: /hello/i,
string: "Hello world!",
array_of_numbers: [1, 2, 3],
set: new Set([1, 2, 3, 3, 2]),
object: {
"key": "value",
"nested": {
"key": "value"
}
},
map: new Map([
["key1", "value1"],
["key2", "value2"]
]),
nan: NaN,
array_of_objects: [
{
"decision": "Should I go to the party?",
"answer": null,
"score": null,
"pro": [
{
"argument": "Fun with friends!",
"weight": 3
}
],
"con": [
{
"argument": "I have tons of work",
"weight": 1
},
{
"argument": "I will need to buy a present",
"weight": 1
}
]
},
{
"decision": "Should I move?",
"answer": null,
"score": null,
"pro": [
{
"argument": "Reduced rent by $500",
"weight": 2
}
],
"con": [
{
"argument": "Expensive moving costs",
"weight": 3
}
]
}
]
}