From fa4c0d02b4f15175608cacc8971cec79c3d43f79 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Thu, 18 Jan 2018 21:38:07 +0100 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/15-function-expressions-arrows/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/15-function-expressions-arrows/article.md b/1-js/02-first-steps/15-function-expressions-arrows/article.md index 5b1da956..307d1ef1 100644 --- a/1-js/02-first-steps/15-function-expressions-arrows/article.md +++ b/1-js/02-first-steps/15-function-expressions-arrows/article.md @@ -244,7 +244,7 @@ Function Expressions are created when the execution reaches them. That would hap Sometimes that's handy to declare a local function only needed in that block alone. But that feature may also cause problems. -For instance, let's imagine that we need to declare a function `welcome()` depending on the `age` variable that we get in run time. And then we plan to use it some time later. +For instance, let's imagine that we need to declare a function `welcome()` depending on the `age` variable that we get during runtime. And then we plan to use it some time later. The code below doesn't work: