Skip to content

Commit 6b20878

Browse files
authored
Merge pull request #6 from ElviraQDP/master
fiixng layout
2 parents b1ed36c + 4802827 commit 6b20878

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

exercises/01-alert-on-click/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ In this HTML code there are 2 buttons: one of them has `myClickFunction` as a li
1010

1111
### 💡 Hint:
1212

13-
Use the tag property called "onclick" just like in the other button.
13+
+ Use the tag property called "onclick" just like in the other button.

exercises/03-sum-values/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
## 💡 Pista:
88

9-
Cuando obtienes el valor de un input, se recomienda convertir el valor a un número entero con la función `parseInt`. De esa forma te aseguras de que el resultado de 2 + 2 sea 4, en vez de 22. Si estas obteniendo 22 como resultado, significa que el valor del input esta siendo tratado como un string en vez de un número entero.
9+
+ Cuando obtienes el valor de un input, se recomienda convertir el valor a un número entero con la función `parseInt`. De esa forma te aseguras de que el resultado de 2 + 2 sea `4`, en vez de `22`. Si estas obteniendo `22` como resultado, significa que el valor del input esta siendo tratado como un string en vez de un número entero.

exercises/03-sum-values/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
## 💡 Hint:
88

9-
When you get the value of an input, it is recommended to parse the value as an integer with the function `parseInt`. That way you make sure that the result of 2 + 2 is 4, instead of 22. If you are getting 22 as a result, it means that the value of the input is being treated as strings instead of integers.
9+
When you get the value of an input, it is recommended to parse the value as an integer with the function `parseInt`. That way you make sure that the result of 2 + 2 is `4`, instead of `22`. If you are getting `22` as a result, it means that the value of the input is being treated as strings instead of integers.

exercises/05-the-load-event/README.es.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ Es una muy buena práctica esperar a que el navegador termine de cargar la pági
99
## 💡 Pista:
1010

1111
- El listener debe asignarse al body.
12+
1213
- Así se añade un listener de evento a un evento load: http://www.w3schools.com/jsref/event_onload.asp

exercises/05-the-load-event/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ It is a very good practice to wait for the browser to finish loading the page be
99
## 💡 Hint:
1010

1111
- The listener has to be assigned to the body.
12+
1213
- Here is how to add the event listener to the load event: http://www.w3schools.com/jsref/event_onload.asp

exercises/07-count-on-click/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `07` Contar onclick
22

3-
Si tienes variables globales, puedes cambiar su valor durante el tiempo de ejecución usando los handlers de eventos. Por ejemplo, este código incrementa el valor de la variable counter cada vez que el usuario hace clic en el botón #increase.
3+
Si tienes **variables globales**, puedes cambiar su valor durante el tiempo de ejecución usando los handlers de eventos. Por ejemplo, este código incrementa el valor de la variable counter cada vez que el usuario hace clic en el botón #increase.
44

55
## 📝 Instrucciones
66

0 commit comments

Comments
 (0)