-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDB.js
More file actions
92 lines (81 loc) · 1.68 KB
/
DB.js
File metadata and controls
92 lines (81 loc) · 1.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
let DB = [
{
"id": "0001",
"catagory": "Electronics",
"name": "jay shree krishna",
"pincode": 365601,
"items":
[
{
"itemname": "chair",
"price": 1001
},
],
},
{
"id": "0002",
"catagory": "Electronics",
"name": "jay shree ram",
"pincode": 365601,
"items":
[
{
"itemname": "table",
"price": 10
},
]
},
{
"id": "0003",
"catagory": "Grocery",
"name": "mahadev",
"pincode": 365301,
"items":
[
{
"itemname": "dal",
"price": 100
},
]
},
{
"id": "0004",
"catagory": "Grocery",
"name": "mahadev har",
"pincode": 365301,
"items":
[
{
"itemname": "chana dal",
"price": 120
},
]
},
{
"id": "0005",
"catagory": "General",
"name": "ganesha",
"pincode": 365341,
"items":
[
{
"itemname": "brush",
"price": 10
},
]
},
{
"id": "0006",
"catagory": "General",
"name": "ganesha radhe kanha",
"pincode": 375341,
"items":
[
{
"itemname": "paint",
"price": 1000
},
],
},
];
exports.default = DB;