We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 254bbf3 + 3704623 commit 23d2ec4Copy full SHA for 23d2ec4
1-js/02-first-steps/15-function-basics/article.md
@@ -331,8 +331,8 @@ function showMovie(age) {
331
332
En el código de arriba, si `checkAge(age)` devuelve `false`, entonces `showMovie` no mostrará la `alert`.
333
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`:
+````smart header="Una función con un `return` vacío, o sin return, devuelve `undefined`"
+Si una función no devuelve un valor, es lo mismo que si devolviera `undefined`:
336
337
```js run
338
function doNothing() { /* empty */ }
0 commit comments