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) { + +} +```