From 2118abbb0473ee511e2f0a00de4ef1012c7dfffc Mon Sep 17 00:00:00 2001 From: Bhushan Gaikwad <43483545+bhushan@users.noreply.github.com> Date: Mon, 25 Jul 2022 14:13:04 +0530 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/15-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/15-function-basics/article.md b/1-js/02-first-steps/15-function-basics/article.md index 79dee432..ed7bc590 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -24,7 +24,7 @@ The `function` keyword goes first, then goes the *name of the function*, then a ```js function name(parameter1, parameter2, ... parameterN) { - ...body... + // body } ```