Skip to content

Commit 79633a9

Browse files
committed
reviewing instructions until es 21
1 parent f1dcd7e commit 79633a9

File tree

37 files changed

+221
-237
lines changed

37 files changed

+221
-237
lines changed

exercises/08.3-Sum-all-items/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `08.3` Suma todos los elementod
1+
# `08.3` Suma todos los elementos
22

33
## :pencil: Instrucciones:
44

@@ -7,7 +7,7 @@
77

88
```js
99
console.log(sumTheElements([2,13,34,5]))
10-
//this should print 54
10+
//el resultado debiese ser 54
1111
```
1212

1313
### Resultado esperado:

exercises/08.3-Sum-all-items/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Using a `for` loop, complete the code of the function `sum` so that it returns t
66

77
```js
88
console.log(sumTheElements([2,13,34,5]))
9-
//el resultado debiese ser 54
9+
//this should print 54
1010
```
1111

1212
### Expected result:

exercises/09-forEach-loop/README.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ En lugar de usar la clásica declaración `for`, hay una nueva forma de recorrer
55
Es posible recorrer un arreglo usando la función `array.forEach`. Debes especificar qué hacer en cada iteración del bucle.
66

77
```js
8-
/**
9-
* item: will be the value of the specific item (required).
10-
* index: will be the item index(optional).
11-
* arr: will be the array object to which the element belongs to (opcional).
12-
*/
138
myArray.forEach(function(item, index, arr){
149

1510
});
11+
/**
12+
* item: valor del elemento específico (requerido).
13+
* index: índice del elemento (opcional).
14+
* arr: objeto array al cual pertenece el elemento (opcional).
15+
*/
1616
```
1717

1818
## :pencil: Instrucciones:

exercises/09-forEach-loop/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ Instead of using the classic `for` statement, there is a new way to loop arrays
55
It is possible to loop an array using the `array.forEach` function. You have to specify what to do on each iteration of the loop.
66

77
```js
8-
/**
9-
* item: valor del elemento específico (requerido).
10-
* index: índice del elemento (opcional).
11-
* arr: objeto array al cual pertenece el elemento (opcional).
12-
*/
138
myArray.forEach(function(item, index, arr){
149

1510
});
11+
/**
12+
* item: will be the value of the specific item (required).
13+
* index: will be the item index(optional).
14+
* arr: will be the array object to which the element belongs to (opcional).
15+
*/
16+
17+
1618
```
1719

1820
## :pencil: Instructions:

exercises/10-Everything-is-awesome/README.es.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# `10.1` Todo es increíble
1+
# `10` Todo es increíble
22

33
## 📝 Instrucciones:
44

5-
Compara el elemento. Si es `1`, pone el número en el arreglo `return_array`.
5+
1. Compara el elemento. Si es `1`, pone el número en el arreglo `return_array`.
66

7-
Compara el elemento si es `0`, pone "Yahoo" en el arreglo o array `return_array` (en lugar del número)
7+
2. Compara el elemento si es `0`, pone "Yahoo" en el arreglo o array `return_array` (en lugar del número)
88

99
Ejemplo de la salida para [0,0,1,1,0]:
1010

exercises/10-Everything-is-awesome/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# `10.1` Everything is awesome
1+
# `10` Everything is awesome
22

33
# 📝 Instructions:
44

5-
Compare the item. If it is `1` push the number to the array `return_array`.
5+
1. Compare the item. If it is `1` push the number to the array `return_array`.
66

7-
Compare the item if it is 0 push "Yahoo" to the array `return_array` (instead of the number)
7+
2. Compare the item if it is 0 push "Yahoo" to the array `return_array` (instead of the number)
88

99
Example output for [0,0,1,1,0]:
1010

exercises/11-Do-while/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ do {
1616
} while (i < 5);
1717
```
1818

19-
## 📝 Instrucciones
19+
## 📝 Instrucciones:
2020

2121
1. Imprime cada número de la iteración en la consola del 20 al 0, pero concaténale un signo de exclamación(`!`) al elemento si el número es un multiplo de 5.
2222

exercises/11-Do-while/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ do {
1616
} while (i < 5);
1717
```
1818

19-
## 📝 Instructions
19+
## 📝 Instructions:
2020

2121
1. Print every iteration number on the console from 20 to 0 but concatenate an exclamation point to the output if the number is a module of 5.
2222

exercises/12-Delete-element/README.es.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# `12` Eliminar el elemento
22

3-
43
La única forma de eliminar a `Daniella` del array o arreglo (sin hacer trampa) será crear un nuevo arreglo con todas las demás personas, excepto Daniella.
54

6-
## 📝Instructions:
5+
## 📝Instrucciones:
76

87
1. Crea una función `deletePerson` que elimine a cualquier persona del arreglo y devuelva un nuevo arreglo sin esa persona.
98

exercises/14-Divide-and-Conquer/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ mergeTwoList([1,2,33,10,20,4]);
2525

2626
### 💡 Pista:
2727

28-
Crea variables vacías cuando necesites almacenar datos.
28+
+ Crea variables vacías cuando necesites almacenar datos.

0 commit comments

Comments
 (0)