From dc6be3a386d5293f05fae6a503c939d70cd1dd47 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Mon, 13 Dec 2021 18:07:25 -0300 Subject: [PATCH] Update article.md --- 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 a8cbedf1..5bdded04 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 in `sayHi` variable. +Let's reiterate: no matter how the function is created, a function is a value. Both examples above store a function in the `sayHi` variable. We can even print out that value using `alert`: