Skip to content

Commit 2c1743e

Browse files
Merge pull request 4GeeksAcademy#135 from josemoracard/patch-1
emojis faltantes
2 parents aac20a9 + 167bff5 commit 2c1743e

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

exercises/02-Print_variables_in_the_console/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ También puedes utilizar la función `console.log()` para imprimir variables en
88

99
2. Luego, imprime su valor en la consola.
1010

11-
## Ejemplo:
11+
## 📎 Ejemplo:
1212

1313
```js
1414
let mySuperVariable = 'hello';

exercises/02-Print_variables_in_the_console/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can also use the `console.log()` function to print variables in the console.
1212

1313
2. Print its value to the console.
1414

15-
## Example:
15+
## 📎 Example:
1616

1717
```js
1818
let mySuperVariable = 'hello';

exercises/12-How_much_the_wedding_costs/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Aquí está la tabla de precios de una empresa de catering de bodas:
1313

1414
1. Crea una función `getPrice` que reciba la cantidad de personas que van a asistir a la boda y devuelve el precio correspondiente en la consola.
1515

16-
## Ejemplo:
16+
## 📎 Ejemplo:
1717

1818
Por ejemplo, si el usuario dice que **20 personas** van a asistir a la boda, el valor retornado debe ser **4000**.
1919

exercises/12-How_much_the_wedding_costs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Here is a table of prices of a wedding catering company:
1313

1414
1. Write a function `getPrice` that receives the number of guests attending the wedding and returns the corresponding `price` on the console.
1515

16-
## Example:
16+
## 📎 Example:
1717

1818
For example, if the user says that **20 people** are attending the wedding, the returned price should be **4000**.
1919

exercises/20-Looping_with_FizzBuzz/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Este es un test típico para principiantes que es requerido para completar entre
1212

1313
4. Para números que sean múltiplos de 3 y 5, imprime `FizzBuzz`.
1414

15-
## Ejemplo de resultado:
15+
## 💻 Resultado esperado:
1616

1717
```js
1818
/

exercises/20-Looping_with_FizzBuzz/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a typical beginner test that is required to complete interviews in Googl
1212

1313
4. For numbers which are multiples of both 3 and 5, print `FizzBuzz`.
1414

15-
## Example output:
15+
## 💻 Expected output:
1616

1717
```js
1818
/

exercises/22-The_Beatles/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Abajo está el coro de una de las canciones más famosas de Los Beatles, *Let it
1414

1515
1. Crea una función llamada `sing()` que devuelva un string con la letra exacta que puedes oír desde el minuto 3:20 hasta el final de la canción a los 3:50 minutos.
1616

17-
## Ejemplo de resultado:
17+
## 💻 Resultado esperado:
1818

1919
```js
2020
"let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be"

exercises/22-The_Beatles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Below is the chorus of one of the most famous Beatles songs, *Let It Be*:
1414

1515
1. Create a function called `sing()` that returns a string with the exact same lyrics which you can hear from the 3:20 mark to the end of the song at 3:50.
1616

17-
## Example output:
17+
## 💻 Expected output:
1818

1919
```js
2020
"let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be"

exercises/23-Bottles_of_milk/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Aquí la puedes escuchar: https://www.youtube.com/watch?v=Xy-da43E6Lo
88

99
1. Escribe un algoritmo para imprimir la misma letra. Debes usar un `for` loop.
1010

11-
## Resultado esperado:
11+
## 💻 Resultado esperado:
1212

1313
```js
1414
`99 bottles of milk on the wall, 99 bottles of milk.`

exercises/23-Bottles_of_milk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Here you can hear it: https://www.youtube.com/watch?v=Xy-da43E6Lo
88

99
1. Write an algorithm to print the exact same lyrics. You must use a `for` loop.
1010

11-
## Expected output:
11+
## 💻 Expected output:
1212

1313
```js
1414
`99 bottles of milk on the wall, 99 bottles of milk.`

0 commit comments

Comments
 (0)