docs(js-checkpoint):add readme file of add exercise

This commit is contained in:
root 2023-10-03 11:49:38 +01:00
parent 543f309348
commit 35e2888bf0
1 changed files with 13 additions and 0 deletions

13
subjects/add/README.md Normal file
View File

@ -0,0 +1,13 @@
## add
### Instructions
Write a function `Add` that will return the sum of two integers.
### Expected function
```js
function Add(a, b) {
}
```