You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
721 B

## Abs
### Instructions
Create a function named `isPositive` that takes a number as a argument, returning `true` if the number is strictly positive, and `false` otherwise.
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()`.
### Notions
- [Functions](https://nan-academy.github.io/js-training/examples/functions.js)
- [Ternary](https://nan-academy.github.io/js-training/examples/ternary.js)
- [Math.abs](https://devdocs.io/javascript/global_objects/math/abs)
### Code provided
> The provided code will be added to your solution, and does not need to be submitted.
```js
Math.abs = undefined
```