-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.js
76 lines (68 loc) · 1.85 KB
/
data.js
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
/* eslint no-unused-vars: 0 */
/*
This is a file filled with dummy data we can use in our examples.
Just copy/paste the data that you need from this file into your file.
*/
/*
A list of inventors
*/
const inventors = [
{first: 'Albert', last: 'Einstein', year: 1879},
{first: 'Isaac', last: 'Newton', year: 1643},
{first: 'Galileo', last: 'Galilei', year: 1564},
{first: 'Marie', last: 'Curie', year: 1867},
{first: 'Johannes', last: 'Kepler', year: 1571},
{first: 'Nicolaus', last: 'Copernicus', year: 1473},
{first: 'Max', last: 'Planck', year: 1858}
];
/*
Beers
*/
const beers = [
{
name: 'Purple Iris',
abv: 6.8,
label: 'https://s3.amazonaws.com/brewerydbapi/beer/dMLwGo/upload_yiUllE-large.png',
type: 'IPA'
},
{
name: 'Orange Blossom Pilsner',
abv: 5.5,
label: 'https://s3.amazonaws.com/brewerydbapi/beer/Rczcb9/upload_9Nhxxl-large.png',
type: 'Pilsner'
},
{
name: 'Darkness',
abv: 4.2,
label: 'https://s3.amazonaws.com/brewerydbapi/beer/lnxbIV/upload_idNXFf-large.png',
type: 'Stout'
},
{
name: 'Belgian Wit',
abv: 5.4,
label: 'https://s3.amazonaws.com/brewerydbapi/beer/3CvVQG/upload_xOMnlK-large.png',
type: 'Wheat'
},
{
name: 'Stolen Fruit',
abv: 4.6,
label: 'https://s3.amazonaws.com/brewerydbapi/beer/YGT30k/upload_uVCHP7-large.png',
type: 'Wheat'
}
];
/*
Pizza Types
*/
const pizzas = ['Deep Dish', 'Peperoni', 'Hawaiian', 'Meatzza', 'Spicy Mama', 'Margherita'];
/*
Cuts of Beef
*/
/* eslint-disable max-len */
const cuts = ['Chuck', 'Brisket', 'Shank', 'Rib', 'Plate', 'Flank', 'Short Loin', 'Tenderloin', 'Sirloin', 'Round'];
/* eslint-enable max-len */
const inventory = {
shoes: 10,
socks: 6,
shirts: 10,
pants: 5
};