-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09.js
More file actions
67 lines (60 loc) · 1.92 KB
/
Copy path09.js
File metadata and controls
67 lines (60 loc) · 1.92 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
var myObj = [
{
"order_id": "SO-921",
"created_at": "2018-02-17T03:24:12",
"customer": { "id": 33, "name": "Ari" },
"items": [
{ "id": 24, "name": "Sapu Lidi", "qty": 2, "price": 13200 },
{ "id": 73, "name": "Sprei 160x200 polos", "qty": 1, "price": 149000 }
]
},
{
"order_id": "SO-922",
"created_at": "2018-02-20T13:10:32",
"customer": { "id": 40, "name": "Ririn" },
"items": [
{ "id": 83, "name": "Rice Cooker", "qty": 1, "price": 258000 },
{ "id": 24, "name": "Sapu Lidi", "qty": 1, "price": 13200 },
{ "id": 30, "name": "Teflon", "qty": 1, "price": 190000 }
]
},
{
"order_id": "SO-923",
"created_at": "2018-02-28T15:20:43",
"customer": { "id": 33, "name": "Ari" },
"items": [
{ "id": 303, "name": "Pematik Api", "qty": 1, "price": 12000 },
{ "id": 49, "name": "Panci", "qty": 2, "price": 70000 }
]
},
{
"order_id": "SO-924",
"created_at": "2018-03-02T14:30:54",
"customer": { "id": 40, "name": "Ririn" },
"items": [
{ "id": 986, "name": "TV LCD 40 inch", "qty": 1, "price": 6000000 }
]
},
{
"order_id": "SO-925",
"created_at": "2018-03-03T14:52:22",
"customer": { "id": 33, "name": "Ari" },
"items": [
{ "id": 1033, "name": "Nintendo Switch", "qty": 1, "price": 4990000 },
{ "id": 2003, "name": "Macbook Air 11 inch 128 GB", "qty": 1, "price": 12000000 },
{ "id": 23, "name": "Pocari Sweat 600ML", "qty": 5, "price": 7000 }
]
},
{
"order_id": "SO-926",
"created_at": "2018-03-05T16:23:20",
"customer": { "id": 58, "name": "Annis" },
"items": [
{ "id": 24, "name": "Sapu Lidi", "qty": 3, "price": 13200 }
]
}
]
var myJSON = JSON.stringify(myObj);
var json = JSON.parse(myJSON);
console.log(json);
console.log(myJSON);