-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcursos.js
43 lines (42 loc) · 956 Bytes
/
cursos.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
let infoCursos = {
'programacion': [
{
id: 1,
titulo: 'Aprende Python',
lenguaje: 'python',
vistas: 15000,
nivel: 'basico'
},
{
id: 2,
titulo: 'Python intermedio',
lenguaje: 'python',
vistas: 13553,
nivel: 'intermedio'
},
{
id: 3,
titulo: 'Aprende JavaScript',
lenguaje: 'javascript',
vistas: 102223,
nivel: 'basico'
}
],
'matematicas': [
{
id: 1,
titulo: 'Aprende Calculo',
tema: 'calculo',
vistas: 12427,
nivel: 'basico'
},
{
id: 2,
titulo: 'Aprende Algebra',
tema: 'algebra',
vistas: 15722,
nivel: 'intermedio'
}
]
}
module.exports.infoCursos = infoCursos;