feat: add exercise jabs

This commit is contained in:
root 2023-10-02 13:19:06 +01:00
parent e7054b5077
commit c7fda9a1dc
1 changed files with 14 additions and 0 deletions

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

@ -0,0 +1,14 @@
## jabs
### Instructions
- Create a function named `abs` that takes a number as an argument and returns its absolute value. You must make your own implementation. You must not use `Math.abs()`
### Expected function
```js
function abs(n) {
}
```