This repository has been archived by the owner on Feb 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
64 lines (64 loc) · 2.01 KB
/
db.json
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
{
"bg": "https://images.pexels.com/photos/1169754/pexels-photo-1169754.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260",
"imgDefault": "https://placehold.it/400x400",
"title": "Quiz do Aprendizado",
"description": "Um quiz rápido sobre o mundo do JavaScript",
"questions": [
{
"image": "https://media.giphy.com/media/j5P0DQIOf4PonLi55G/giphy.gif",
"title": "Qual a diferença entre = , == e === ?",
"description": "Pergunta fácil, ein!",
"answer": 1,
"alternatives": [
"São a mesma coisa",
"O = significa atribuição de valor. Já == verifica a igualdade do valor, enquanto === verifica valor e tipo de variável."
]
},
{
"image": "https://media.giphy.com/media/Ie2Hs3A0uJRtK/giphy.gif",
"title": "Que tipos de dados são suportados em JavaScript?",
"description": "E agora? Você sabe?",
"answer": 0,
"alternatives": [
"Number, String, Undefined, Null e Bool.",
"Int, String, Undefined, Null e Bool."
]
},
{
"image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif",
"title": "Qual a diferença de window e global?",
"answer": 1,
"alternatives": [
"São a mesma coisa",
"window é o escopo global no browser, e global no node"
]
},
{
"image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif",
"title": "Qual a forma antiga de trabalhar com AJAX na Web?",
"answer": 2,
"alternatives": [
"JSONHttpRequest",
"fetch",
"XMLHttpRequest"
]
}
],
"external": [
"https://aluraquiz-css.omariosouto.vercel.app/",
"https://aluraquiz-devsoutinho.omariosouto.vercel.app/"
],
"theme": {
"colors": {
"primary": "#0BDA51",
"secondary": "#5218fa",
"mainBg": "#242124",
"contrastTextLight": "#f8f8ff",
"contrastTextDark": "#242124",
"wrong": "#cc3333",
"success": "#0BDA51",
"disabled": "#5218fa"
},
"borderRadius": "4px"
}
}