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: