forked from Beraton/nodejs_weather_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_db.js
More file actions
39 lines (38 loc) · 685 Bytes
/
example_db.js
File metadata and controls
39 lines (38 loc) · 685 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
const collection = [
{
id: 0,
name: "Molecule Man",
age: 29,
secretIdentity: "Dan Jukes",
powers: [
"Radiation resistance",
"Turning tiny",
"Radiation blast"
]
},
{
id: 1,
name: "Madame Uppercut",
age: 39,
secretIdentity: "Jane Wilson",
powers: [
"Million tonne punch",
"Damage resistance",
"Superhuman reflexes"
]
},
{
id: 2,
name: "Eternal Flame",
age: 1000000,
secretIdentity: "Unknown",
powers: [
"Immortality",
"Heat Immunity",
"Inferno",
"Teleportation",
"Interdimensional travel"
]
}
]
module.exports = { collection }