docs(checkpoint-js):add subject of sub exercise

This commit is contained in:
hamzaelkhatri 2023-10-09 12:41:54 +01:00
parent 3a09fc145c
commit 2d338f9185
1 changed files with 13 additions and 0 deletions

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

@ -0,0 +1,13 @@
## sub
### Instructions
Write a function `Sub` that will return the substraction of two numbers.
### Expected function
```js
function Sub(a, b) {
}
```