-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
27 lines (27 loc) · 827 Bytes
/
data.js
File metadata and controls
27 lines (27 loc) · 827 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
module.exports = {
childrenAge: [2, 0, 5, 8, 12, 17, 13, 7, 10],
mailList: [
"mariarocha@localhost.com",
"maria.rocha@localhost.com",
"m-r@localhost.com",
"rocha@localhost.com",
"ccontato@m-rr.com.br",
"contato@m-r.com.br",
"contato@m_r.com.br"
],
passengers: [
{ name: "Ademar", birthYear: 1975 },
{ name: "Tiago", birthYear: 1997 },
{ name: "Eduarda", birthYear: 2004 },
{ name: "Jessica", birthYear: 1984 },
{ name: "Enzo", birthYear: 2015 },
{ name: "Natan", birthYear: 2001 },
{ name: "Ana", birthYear: 1995 }
],
shopCart: [
{ product: "sapato", quantity: 2, unitPrice: 118 },
{ product: "tenis", quantity: 3, unitPrice: 89 },
{ product: "bermuda", quantity: 1, unitPrice: 48 },
{ product: "camiseta", quantity: 2, unitPrice: 25 }
]
};