Skip to content

Commit 181ad45

Browse files
committed
v0.3.0
1 parent 6d7274a commit 181ad45

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Exercises JavaScript/JS Big Exercises/Exercise_6/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>CLUB DE PELICULAS</title>
7+
<title>CLUB DE PELICULAS SPA</title>
88
</head>
99
<body>
1010
<a href="https://drive.google.com/file/d/1gCeXaDyXjznXvNbcziRs8QmuuhZZ-aqf/view?usp=sharing">link</a>

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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) !!!
22
<img align="center" src="https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif" alt="javascript" width="1000"/>
33

44
![ezgif com-gif-maker](https://miro.medium.com/max/3200/1*OF0xEMkWBv-69zvmNs6RDQ.gif)
@@ -19,3 +19,11 @@
1919

2020
+ ### [Testing](https://github.com/Zelechos/Pragmatic_JavaScript/tree/master/Testing)
2121
- 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)

Testing/Sudoku/sudoku.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ export default class Sudoku{
4040
}
4141
}
4242

43-
// module.exports = Sudoku;
44-
4543
// test code
4644
let text = '005910308009403060027500100030000201000820007006007004000080000640150700890000420';
4745
let obj = new Sudoku();

Vanilla JavaScript/This/01_This.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict'
2-
32
// This
43

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+
*/
88
console.log(this);
99
console.log(window);
1010
console.warn(this === window);

0 commit comments

Comments
 (0)