From cc74cccffa6fd5a1c1b7a6fdbca2d4ce738ea8eb Mon Sep 17 00:00:00 2001 From: Sarah Lewis <280882+bookchiq@users.noreply.github.com> Date: Thu, 13 Jan 2022 10:06:23 -0800 Subject: [PATCH] Update article.md Minor grammar fix --- 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 5bdded04..bca23ae5 100644 --- a/1-js/02-first-steps/16-function-expressions/article.md +++ b/1-js/02-first-steps/16-function-expressions/article.md @@ -12,7 +12,7 @@ function sayHi() { There is another syntax for creating a function that is called a *Function Expression*. -It allows to create a new function in the middle of any expression. +It allows us to create a new function in the middle of any expression. For example: