diff --git a/1-js/02-first-steps/14-function-basics/article.md b/1-js/02-first-steps/14-function-basics/article.md index f23c8c01..3a7215a6 100644 --- a/1-js/02-first-steps/14-function-basics/article.md +++ b/1-js/02-first-steps/14-function-basics/article.md @@ -332,7 +332,7 @@ return*!*;*/!* So, it effectively becomes an empty return. We should put the value on the same line instead. ```` -## Naming a function #function-naming +## Naming a function [#function-naming] Functions are actions. So their name is usually a verb. It should be brief, as accurate as possible and describe what the function does, so that someone reading the code gets an indication of what the function does.