From b1b04d9ff2fc43e7b3d65e84c66561aacd999c14 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 9 Nov 2018 11:29:18 +0100 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/14-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.