File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
Exercises JavaScript/JS Big Exercises/Exercise_6 Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 4
4
< meta charset ="UTF-8 ">
5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
- < title > CLUB DE PELICULAS</ title >
7
+ < title > CLUB DE PELICULAS SPA </ title >
8
8
</ head >
9
9
< body >
10
10
< a href ="https://drive.google.com/file/d/1gCeXaDyXjznXvNbcziRs8QmuuhZZ-aqf/view?usp=sharing "> link</ a >
Original file line number Diff line number Diff line change 1
- # Welcome Pragmatic_JavaScript [[ v0.2.9 ]] ( https://github.com/Zelechos/Pragmatic_JavaScript/releases/tag/v0.2.9 ) !!!
1
+ # Welcome Pragmatic_JavaScript [[ v0.3.0 ]] ( https://github.com/Zelechos/Pragmatic_JavaScript/releases/tag/v0.3.0 ) !!!
2
2
<img align =" center " src =" https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif " alt =" javascript " width =" 1000 " />
3
3
4
4
![ ezgif com-gif-maker] ( https://miro.medium.com/max/3200/1*OF0xEMkWBv-69zvmNs6RDQ.gif )
19
19
20
20
+ ### [ Testing] ( https://github.com/Zelechos/Pragmatic_JavaScript/tree/master/Testing )
21
21
- Description : it is a folder with many examples the testing with Jest to learn
22
+
23
+ <img align =" center " src =" https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif " alt =" javascript " width =" 1000 " />
24
+
25
+ ## Recommended courses
26
+
27
+ <img align =" center " src =" https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif " alt =" javascript " width =" 1000 " />
28
+
29
+ + ### [ Jhon Mircha Course] ( https://www.youtube.com/playlist?list=PLvq-jIkSeTUZ6QgYYO3MwG9EMqC-KoLXA )
Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ export default class Sudoku{
40
40
}
41
41
}
42
42
43
- // module.exports = Sudoku;
44
-
45
43
// test code
46
44
let text = '005910308009403060027500100030000201000820007006007004000080000640150700890000420' ;
47
45
let obj = new Sudoku ( ) ;
Original file line number Diff line number Diff line change 1
1
'use strict'
2
-
3
2
// This
4
3
5
- // muestra valores en base a su contexto
6
-
7
- // el contexto actual de this es el del objeto window por defecto
4
+ /**
5
+ * muestra valores en base a su contexto
6
+ * el contexto actual de this es el del objeto window por defecto
7
+ */
8
8
console . log ( this ) ;
9
9
console . log ( window ) ;
10
10
console . warn ( this === window ) ;
You can’t perform that action at this time.
0 commit comments