feat(js-checkpoint): add subject for more exercise

This commit is contained in:
root 2023-10-02 15:16:23 +01:00
parent e7054b5077
commit edb955da0c
1 changed files with 14 additions and 0 deletions

14
subjects/more/README.md Normal file
View File

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