From e7c5d135546b22778703aeb003e5089edd8b6a31 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Mon, 13 Dec 2021 18:05:13 -0300 Subject: [PATCH] typo --- 1-js/02-first-steps/16-function-expressions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/16-function-expressions/article.md b/1-js/02-first-steps/16-function-expressions/article.md index f6ae9291..a8cbedf1 100644 --- a/1-js/02-first-steps/16-function-expressions/article.md +++ b/1-js/02-first-steps/16-function-expressions/article.md @@ -34,7 +34,7 @@ In more advanced situations, that we'll come across later, a function may be cre ## Function is a value -Let's reiterate: no matter how the function is created, a function is a value. Both examples above store a function is `sayHi` variable. +Let's reiterate: no matter how the function is created, a function is a value. Both examples above store a function in `sayHi` variable. We can even print out that value using `alert`: