This repository was archived by the owner on Dec 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdataForQuestions.js
More file actions
59 lines (57 loc) · 1.45 KB
/
dataForQuestions.js
File metadata and controls
59 lines (57 loc) · 1.45 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
const movies = { // [movie:id]
'Fantastic Four (2005)': 9738,
'Fantastic Four: Rise of the Silver Surfer': 1979,
'Iron Man': 1726,
'The Incredible Hulk': 1724,
'Iron Man 2': 10138,
'Thor': 10195,
'Captain America: The First Avenger': 1771,
'The Avengers': 24428,
'Iron Man 3': 68721,
'Thor: The Dark World': 76338,
'Captain America: The Winter Soldier': 100402,
'Guardians of the Galaxy': 118340,
'Avengers: Age of Ultron': 99861,
'Ant-Man': 102899,
'Fantastic Four (2015)': 166424,
'Captain America: Civil War': 271110,
'Doctor Strange': 284052,
'Guardians of the Galaxy Vol. 2': 283995,
'Spider-Man: Homecoming': 315635,
'Thor: Ragnarok': 284053,
'Black Panther': 284054,
'Avengers: Infinity War': 299536,
'Ant-Man and the Wasp': 363088,
'Captain Marvel': 299537,
'Avengers: Endgame': 299534,
'Spider-Man: Far From Home': 429617
}
const actors = [
'Robert Downey Jr.',
'Chris Evans',
'Mark Ruffalo',
'Chris Hemsworth',
'Scarlett Johansson',
'Jeremy Renner',
'Don Cheadle',
'Paul Rudd',
'Brie Larson',
'Michael B. Jordan',
'Karen Gillan',
'Danai Gurira',
'Josh Brolin',
'Gwyneth Paltrow',
'Bradley Cooper',
'Tom Holland',
'Zoe Saldana',
'Anthony Mackie',
'Tom Hiddleston',
'Chris Pratt',
'Black Panther',
'Samuel L. Jackson',
'Dave Bautista',
]
module.exports = {
movies,
actors
}