Skip to content

Commit 3704623

Browse files
authored
Update article.md
1 parent 254bbf3 commit 3704623

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/02-first-steps/15-function-basics/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ function showMovie(age) {
331331
332332
En el código de arriba, si `checkAge(age)` devuelve `false`, entonces `showMovie` no mostrará la `alert`.
333333
334-
````smart header="Una función con un valor de `return` vacío o sin él devuelve `undefined`"
335-
Si una función no devuelve un valor, es lo mismo que si devuelve `undefined`:
334+
````smart header="Una función con un `return` vacío, o sin return, devuelve `undefined`"
335+
Si una función no devuelve un valor, es lo mismo que si devolviera `undefined`:
336336
337337
```js run
338338
function doNothing() { /* empty */ }

0 commit comments

Comments
 (0)