From edb955da0c6bacccab123ddb77e8349b94428d11 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 2 Oct 2023 15:16:23 +0100 Subject: [PATCH] feat(js-checkpoint): add subject for more exercise --- subjects/more/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 subjects/more/README.md diff --git a/subjects/more/README.md b/subjects/more/README.md new file mode 100644 index 000000000..1e0a69c82 --- /dev/null +++ b/subjects/more/README.md @@ -0,0 +1,14 @@ +## more + +### Instructions + +Create a function named `more` that takes 1 argument and adds 1 to it. +the function must return the result of the operation. + +### Expected function + +```js +function more(a) { + +} +```